/* Bootstrap CDN wordt geladen in de HTML head */
/* Donker kroeg-thema kleuren */
:root {
    --primary-color: #8B4513; /* Bruin voor hout */
    --secondary-color: #D2691E; /* Lichter bruin */
    --accent-color: #FFD700; /* Goud */
    --dark-color: #1a1a1a; /* Donkergrijs */
    --light-color: #2d2d2d; /* Donkergrijs */
    --text-color: #e0e0e0; /* Lichtgrijs */
    --bg-color: #1a1a1a; /* Donkere achtergrond */
    --card-bg: #2d2d2d; /* Donkere kaarten */
    --border-color: #444; /* Donkere borders */
}

/* Force dark theme for all elements */
* {
    box-sizing: border-box;
}

html {
    background-color: var(--bg-color) !important;
}

body {
    background-color: var(--bg-color) !important;
    color: var(--text-color) !important;
}

body {
    background-color: var(--bg-color) !important;
    color: var(--text-color) !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Override Bootstrap defaults */
.container, .container-fluid {
    background-color: transparent !important;
}

.row {
    background-color: transparent !important;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    background-color: transparent !important;
}

/* Header styling */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

/* Navbar collapse smooth transition */
.navbar-collapse {
    transition: max-height 0.5s ease, opacity 0.4s ease;
    overflow: hidden;
}

.navbar-collapse.collapsing {
    transition: height 0.5s ease, opacity 0.4s ease;
}

.navbar-collapse.show {
    animation: navbarExpand 0.5s ease-out;
}

@keyframes navbarExpand {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* Mobile-first navbar smooth expansion */
@media (max-width: 991px) {
    .navbar-collapse {
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        max-height: 0;
    }
    
    .navbar-collapse.show {
        max-height: 500px;
    }
    
    /* Navbar items staggered fade-in animation */
    .navbar-collapse.show .navbar-nav .nav-item {
        animation: navItemSlideIn 0.4s ease-out backwards;
    }
    
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(1) { animation-delay: 0.2s; }
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(2) { animation-delay: 0.3s; }
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(3) { animation-delay: 0.4s; }
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(4) { animation-delay: 0.5s; }
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(5) { animation-delay: 0.6s; }
    
    @keyframes navItemSlideIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--accent-color) !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.navbar-nav .nav-link {
    color: var(--light-color) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Profile navigation styling */
.profile-nav-link {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem !important;
}

.profile-nav-photo {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px;
    border-radius: 50% !important;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: inline-block;
    flex-shrink: 0;
}

.profile-nav-link:hover .profile-nav-photo {
    transform: scale(1.1);
    border-color: #FFA500;
}

.profile-nav-username {
    font-weight: 600;
    white-space: nowrap;
}

/* Dropdown menu styling met animatie */
.dropdown-menu {
    background-color: var(--card-bg) !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4) !important;
    padding: 0.5rem !important;
    margin-top: 0.5rem !important;
    min-width: 200px !important;
    overflow: hidden;
    
    /* Desktop animatie */
    animation: dropdownSlideIn 0.3s ease-out;
    transform-origin: top;
}

@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile-first animatie */
@media (max-width: 991px) {
    .dropdown-menu {
        animation: mobileDropdownExpand 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: top center;
    }
    
    @keyframes mobileDropdownExpand {
        0% {
            opacity: 0;
            max-height: 0;
            transform: scaleY(0);
        }
        40% {
            opacity: 0.5;
            max-height: 150px;
            transform: scaleY(0.6);
        }
        100% {
            opacity: 1;
            max-height: 300px;
            transform: scaleY(1);
        }
    }
    
    .dropdown-item {
        animation: mobileItemSlideIn 0.4s ease-out backwards;
    }
    
    .dropdown-item:nth-child(1) {
        animation-delay: 0.2s;
    }
    
    .dropdown-item:nth-child(2) {
        animation-delay: 0.25s;
    }
    
    .dropdown-item:nth-child(3) {
        animation-delay: 0.3s;
    }
    
    .dropdown-item:nth-child(4) {
        animation-delay: 0.35s;
    }
    
    @keyframes mobileItemSlideIn {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

.dropdown-item {
    color: var(--text-color) !important;
    padding: 0.75rem 1rem !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-weight: 500 !important;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: var(--accent-color) !important;
    transform: translateX(5px) !important;
}

.dropdown-item:active {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)) !important;
}

.dropdown-divider {
    border-color: var(--border-color) !important;
    opacity: 0.3 !important;
    margin: 0.5rem 0 !important;
}

/* Dropdown arrow indicator */
.dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

@media (max-width: 991px) {
    .profile-nav-link {
        justify-content: center;
    }
    
    .profile-nav-photo {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px;
        min-height: 40px;
        max-width: 40px;
        max-height: 40px;
    }
    
    .dropdown-menu {
        min-width: 100% !important;
    }
}

/* Main content */
.main-content {
    min-height: calc(100vh - 76px);
    padding: 2rem 0;
}

/* Cards voor events */
.event-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.event-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Klikbare event cards */
.event-card-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-card-clickable:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    border-color: var(--accent-color);
}

.event-card-clickable:hover .card-header {
    background: linear-gradient(135deg, var(--accent-color), #FFA500);
}

.event-card-clickable:hover .card-title {
    color: var(--dark-color);
}

.event-card .card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem 1.5rem;
}

.event-card .card-title {
    color: var(--accent-color);
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.event-card .card-body {
    padding: 1.5rem;
}

.event-date {
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin: 0.5rem 0;
}

.event-creator {
    color: var(--secondary-color);
    font-style: italic;
    font-size: 0.9rem;
}

/* Forms */
.form-control {
    background-color: var(--light-color);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    background-color: var(--light-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
    color: var(--text-color);
}

.form-control::placeholder {
    color: #888;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* RSVP form */
.rsvp-form {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    margin-top: 1rem;
}

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.form-check-label {
    font-weight: 500;
    margin-left: 0.5rem;
}

/* Alerts */
.alert {
    border-radius: 15px;
    border: none;
    font-weight: 500;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
}

/* Welcome page */
.welcome-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.welcome-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

.welcome-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Admin dashboard */
.admin-card {
    background: var(--card-bg);
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.admin-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.admin-card .card-header {
    background: linear-gradient(135deg, var(--accent-color), #FFA500);
    color: var(--dark-color);
    font-weight: bold;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 2rem 0;
    margin-top: 3rem;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .welcome-hero h1 {
        font-size: 2rem;
    }
    
    .event-card {
        margin-bottom: 1rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Donker thema verbeteringen */
.card {
    background-color: var(--card-bg);
    border-color: var(--border-color);
    color: var(--text-color);
}

.breadcrumb {
    background-color: var(--light-color);
}

.breadcrumb-item a {
    color: var(--accent-color);
}

.breadcrumb-item.active {
    color: var(--text-color);
}

.dropdown-menu {
    background-color: var(--card-bg);
    border-color: var(--border-color);
}

.dropdown-item {
    color: var(--text-color);
}

.dropdown-item:hover {
    background-color: var(--light-color);
    color: var(--accent-color);
}

.badge {
    color: var(--dark-color);
}

.text-muted {
    color: #888 !important;
}

.bg-light {
    background-color: var(--light-color) !important;
    color: var(--text-color) !important;
}

/* Form labels */
.form-label {
    color: var(--text-color);
}

/* List styling */
.list-unstyled li {
    color: var(--text-color);
}

/* Details/summary styling */
details summary {
    color: var(--text-color);
}

details[open] summary {
    color: var(--accent-color);
}

/* Force dark theme overrides */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-color) !important;
}

p, span, div, a {
    color: inherit;
}

a {
    color: var(--accent-color);
}

a:hover {
    color: #FFA500;
}

/* Button group styling */
.btn-group .btn {
    border-radius: 0;
}

.btn-group .btn:first-child {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.btn-group .btn:last-child {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

/* Ensure all text is visible */
.text-dark {
    color: var(--text-color) !important;
}

.text-light {
    color: var(--text-color) !important;
}

/* Override any white backgrounds */
.bg-white {
    background-color: var(--card-bg) !important;
}

/* Ensure proper contrast */
.alert {
    color: var(--text-color);
}

.alert-danger {
    background: linear-gradient(135deg, #4a1a1a, #5a2a2a);
    color: #ffcccc;
}

.alert-success {
    background: linear-gradient(135deg, #1a4a1a, #2a5a2a);
    color: #ccffcc;
}

/* Button group improvements */
.btn-group {
    gap: 0.5rem;
}

.btn-group .btn {
    border-radius: 25px !important;
    margin-right: 0.5rem;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Page header styling */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-radius: 0 0 20px 20px;
}

.page-header h1 {
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0;
}

/* Card improvements */
.card-header h1, .card-header h2, .card-header h3 {
    margin: 0;
    color: var(--accent-color);
}

/* Form improvements */
.form-check-input {
    background-color: var(--light-color);
    border-color: var(--border-color);
}

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Better spacing */
.mb-4 {
    margin-bottom: 2rem !important;
}

/* Responsive button groups */
@media (max-width: 768px) {
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-group .btn {
        margin-right: 0;
        margin-bottom: 0.5rem;
        border-radius: 25px !important;
    }
    
    .btn-group .btn:last-child {
        margin-bottom: 0;
    }
}

/* Page title styling */
.text-center h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 0;
}

/* Mobile navbar improvements */
@media (max-width: 768px) {
    .navbar-nav .nav-item {
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .navbar-nav .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
    }
    
    .dropdown-menu {
        text-align: center;
    }
}

/* Better spacing for mobile */
@media (max-width: 768px) {
    .text-center h1 {
        font-size: 2rem;
    }
    
    .mb-4 {
        margin-bottom: 1.5rem !important;
    }
}

/* Video Trimmer Modal */
.video-trimmer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.video-trimmer-content {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-trimmer-header {
    padding: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.video-trimmer-header h5 {
    margin: 0;
    color: var(--accent-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.video-trimmer-body {
    padding: 1.5rem;
}

.video-trimmer-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

/* Video Editor Modal */
.video-editor-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.video-editor-content {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    max-width: 900px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-editor-header {
    padding: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #28a745, #20c997);
}

.video-editor-header h5 {
    margin: 0;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.video-editor-body {
    padding: 1.5rem;
}

.video-editor-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

/* Timeline Editor */
.timeline-container {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.timeline-track {
    position: relative;
    height: 60px;
    background: #1a1a1a;
    border-radius: 8px;
    margin: 1rem 0;
    cursor: pointer;
    overflow: hidden;
}

.timeline-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        #2a2a2a 0px,
        #2a2a2a 10px,
        #1a1a1a 10px,
        #1a1a1a 20px
    );
}

.timeline-selection {
    position: absolute;
    top: 0;
    bottom: 0;
    background: rgba(40, 167, 69, 0.4);
    border: 2px solid #28a745;
    border-radius: 6px;
    cursor: move;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.timeline-selection:hover {
    background: rgba(40, 167, 69, 0.5);
}

.timeline-selection-inner {
    flex: 1;
    text-align: center;
    pointer-events: none;
}

.timeline-time-display {
    color: white;
    font-weight: bold;
    font-size: 0.85rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.timeline-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 12px;
    background: #28a745;
    cursor: ew-resize;
    transition: background 0.2s;
}

.timeline-handle:hover {
    background: #20c997;
}

.timeline-handle-left {
    left: -2px;
    border-radius: 6px 0 0 6px;
}

.timeline-handle-right {
    right: -2px;
    border-radius: 0 6px 6px 0;
}

.timeline-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 20px;
    background: white;
    border-radius: 2px;
}

.timeline-playhead {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ffc107;
    pointer-events: none;
    z-index: 10;
}

.timeline-playhead::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 10px;
    height: 10px;
    background: #ffc107;
    border-radius: 50%;
}

.timeline-markers {
    display: flex;
    justify-content: space-between;
    position: relative;
    height: 20px;
    margin-top: 0.5rem;
}

.timeline-marker {
    position: absolute;
    font-size: 0.7rem;
    color: #888;
    transform: translateX(-50%);
}

.timeline-marker::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 5px;
    background: #555;
}

/* Video preview */
.video-preview {
    position: relative;
    display: inline-block;
    margin: 0.5rem;
}

.video-preview video {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.video-preview .video-duration {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 0.75rem;
}

/* Media grid improvements for mixed content */
.media-card {
    position: relative;
}

.media-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-type-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.75rem;
    z-index: 5;
}

/* Responsive timeline */
@media (max-width: 768px) {
    .timeline-track {
        height: 50px;
    }
    
    .timeline-time-display {
        font-size: 0.7rem;
    }
    
    .timeline-handle {
        width: 20px;
    }
}
