/* EPG Tooltip */
.epg-tooltip {
    position: absolute;
    left: 100%;
    top: 0;
    width: 280px;
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid #333;
    border-left: 2px solid var(--accent-color);
    padding: 15px;
    z-index: 1000;
    display: none;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    border-radius: 0 8px 8px 0;
    pointer-events: none;
    /* Let clicks pass through if needed, but usually we want to see it */
}

/* Ensure channel row is relative for absolute positioning of tooltip */
.channel-row {
    position: relative;
}

/* Show tooltip on hover */
.channel-row:hover .epg-tooltip {
    display: block;
}

.tooltip-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
}

.tooltip-program {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.4;
}

.tooltip-program.current {
    color: #fff;
}

.tooltip-program.next {
    color: #999;
}

.tooltip-time {
    color: var(--accent-color);
    font-weight: 600;
    margin-right: 5px;
    font-size: 12px;
}