
/* Video Playlist Styles */
.video-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.main-video {
    flex: 2;
    min-width: 300px;
}

.main-video video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.video-playlist {
    flex: 1;
    min-width: 200px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    max-height: 400px;
    overflow-y: auto;
}

.video-playlist h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #dc3545;
    padding-bottom: 5px;
    display: inline-block;
}

.playlist-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.playlist-btn {
    text-align: left;
    padding: 12px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95em;
}

.playlist-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    transform: translateX(5px);
}

.playlist-btn:focus {
    outline: none;
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}
