/* 🌙 DARK MODE untuk Live Container */
.dark-mode .container-live {
  background-color: #001919;
  color: #e0e0e0;
}

/* Video player */
.dark-mode .video-player iframe {
  background-color: #000;
  border: 1px solid #333;
}

/* Tombol scroll LIVE */
.dark-mode .scroll-live-btn {
  background-color: #ff3b3b;
  color: #fff;
}
.dark-mode .scroll-live-btn:hover {
  background-color: #c5001f;
}

/* Schedule Box */
.dark-mode .schedule {
  background-color: #002626;
  color: #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
  border: 1px solid #333;
}
.dark-mode .schedule h3 {
  border-bottom: 2px solid #444;
  color: #fff;
}

/* Program Item */
.dark-mode .program-item {
  border-bottom: 1px solid #333;
}
.dark-mode .program-item:hover {
  background-color: #0d1a1a;
}
.dark-mode .program-item .title {
  color: #eee;
}
.dark-mode .program-item .time {
  color: #aaa;
}
.dark-mode .program-item.live {
  background: linear-gradient(90deg, #331111, #441111);
  border-left: 4px solid #ff3b3b;
  box-shadow: 0 2px 6px rgba(230,0,35,0.4);
}
.dark-mode .program-item .live-label {
  background-color: #ff3b3b;
  color: #fff;
}

/* Scrollbar */
.dark-mode .schedule::-webkit-scrollbar-thumb {
  background-color: #555;
}
.dark-mode .schedule::-webkit-scrollbar-track {
  background-color: #111;
}


.container-live {
            max-width: 1200px;
            margin: auto;
            padding: 20px;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* Kiri: video player */
        .video-player {
            flex: 1 1 600px;
            min-width: 300px;
        }
        .video-player iframe {
            width: 100%;
            height: 360px;
            border: none;
            border-radius: 8px;
        }

        /* Tombol scroll ke LIVE */
        .scroll-live-btn {
            display: none;
            margin-bottom: 10px;
            padding: 8px 12px;
            background-color: #e60023;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
        }
        .scroll-live-btn:hover {
            background-color: #c5001f;
        }

        /* Kanan: jadwal scrollable */
        .schedule {
            flex: 1 1 350px;
            min-width: 250px;
            max-height: 360px;
            overflow-y: auto;
            background-color: #fff;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        .schedule h3 {
            margin-top: 0;
            margin-bottom: 15px;
            font-size: 20px;
            border-bottom: 2px solid #ddd;
            padding-bottom: 5px;
        }
        .program-item {
            padding: 12px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.2s ease;
            border-radius: 5px;
        }
        .program-item:hover {
            background-color: #f5f5f5;
        }
        .program-item .title {
            font-weight: 500;
            flex: 1;
            margin-left: 10px;
        }
        .program-item .time {
            font-size: 14px;
            color: #666;
            min-width: 50px;
        }
        .program-item.live {
            background: linear-gradient(90deg, #ffe6e6, #ffd6d6);
            box-shadow: 0 2px 6px rgba(230,0,35,0.3);
            border-left: 4px solid #e60023;
        }
        .program-item .live-label {
            background-color: #e60023;
            color: #fff;
            font-size: 12px;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
            white-space: nowrap;
        }

        /* Scrollbar styling */
        .schedule::-webkit-scrollbar {
            width: 6px;
        }
        .schedule::-webkit-scrollbar-thumb {
            background-color: #ccc;
            border-radius: 3px;
        }
        .schedule::-webkit-scrollbar-track {
            background-color: #f9f9f9;
        }

        /* Responsive mobile */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }
            .video-player iframe {
                height: 220px;
            }
            .schedule {
                max-height: 220px;
            }
        }