/* Timetable Screen CSS */

/* Meteors Background Effect */
@keyframes meteor {
    0% {
        transform: translateX(0) translateY(0) rotate(-45deg);
        opacity: 1;
    }
    100% {
        transform: translateX(-500px) translateY(300px) rotate(-45deg);
        opacity: 0;
    }
}

.timetable-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 170, 64, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.meteor {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 170, 64, 0.8), transparent);
    animation: meteor 3s linear infinite;
    z-index: 0;
}

.meteor:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.meteor:nth-child(2) { top: 30%; left: 50%; animation-delay: 1s; }
.meteor:nth-child(3) { top: 50%; left: 80%; animation-delay: 2s; }

/* Hero Section */
.timetable-hero {
    padding: 80px 20px 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--color-dark-background) 0%, var(--color-dark-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.timetable-hero > * {
    position: relative;
    z-index: 1;
}


.timetable-hero-subtitle {
    font-family: var(--font-family-text);
    font-size: var(--font-size-large);
    color: var(--color-text-light);
    margin: 20px 0 30px 0;
    animation: blurFadeIn 1s ease-out 0.3s backwards;
}

.timetable-hero-info {
    font-family: var(--font-family-text);
    font-size: var(--font-size-medium);
    color: var(--color-text-light);
    margin: 30px 0;
}

.timetable-hero-info .separator {
    margin: 0 15px;
    color: var(--color-gold);
}

/* Subtle Button Effects - Only Light Effects */
.timetable-hero-cta {
    margin-top: 40px;
    animation: blurFadeIn 1.2s ease-out 0.6s backwards;
}

.timetable-hero-cta .widget-button-standard {
    position: relative;
    transition: all 0.3s ease;
}

.timetable-hero-cta .widget-button-standard:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 170, 64, 0.3);
}

/* Timeline Controls */
.timetable-controls {
    padding: 30px 20px;
    background-color: var(--color-dark-secondary);
}

.timetable-controls-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.timetable-zoom-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-label {
    font-family: var(--font-family-text);
    font-size: var(--font-size-medium);
    color: var(--color-text-light);
    font-weight: 600;
}

.timetable-zoom-button {
    font-family: var(--font-family-text);
    font-size: var(--font-size-medium);
    padding: 10px 20px;
    background-color: var(--color-dark-card);
    color: var(--color-text-light);
    border: 2px solid var(--color-border-light);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.timetable-zoom-button:hover {
    background-color: var(--color-gold);
    color: var(--color-dark-background);
    border-color: var(--color-gold);
}

.timetable-zoom-button.active {
    background-color: var(--color-gold);
    color: var(--color-dark-background);
    border-color: var(--color-gold);
    font-weight: 700;
}

/* Floating Particles Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    33% {
        transform: translateY(-20px) translateX(10px);
    }
    66% {
        transform: translateY(10px) translateX(-10px);
    }
}

/* Border Beam Animation */
@keyframes borderBeam {
    0% {
        offset-distance: 0%;
    }
    100% {
        offset-distance: 100%;
    }
}

/* Legend */
.timetable-legend {
    padding: 40px 20px;
    background-color: var(--color-dark-background);
    position: relative;
    overflow: hidden;
}

/* Floating Particles in Background */
.timetable-legend::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 170, 64, 0.3);
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation: float 4s ease-in-out infinite;
    box-shadow: 
        100px 50px 0 rgba(255, 170, 64, 0.2),
        -50px 100px 0 rgba(156, 64, 255, 0.2),
        200px 150px 0 rgba(255, 170, 64, 0.15),
        -100px -50px 0 rgba(156, 64, 255, 0.15);
}

.timetable-legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    animation: blurFadeIn 0.8s ease-out backwards;
}

.legend-item:nth-child(1) { animation-delay: 0.1s; }
.legend-item:nth-child(2) { animation-delay: 0.2s; }
.legend-item:nth-child(3) { animation-delay: 0.3s; }
.legend-item:nth-child(4) { animation-delay: 0.4s; }

.legend-color {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 2px solid var(--color-border-light);
    position: relative;
    transition: all 0.3s ease;
}

.legend-color::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 6px;
    padding: 2px;
    background: linear-gradient(90deg, #ffaa40, #9c40ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.legend-item:hover .legend-color::before {
    opacity: 1;
}

.legend-name {
    font-family: var(--font-family-text);
    font-size: var(--font-size-medium);
    color: var(--color-text-light);
    font-weight: 600;
}

.legend-room {
    font-family: var(--font-family-text);
    font-size: var(--font-size-small);
    color: var(--color-text-muted);
}

/* Particle Animation */
@keyframes particle-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(10px, -15px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(-5px, -30px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translate(-15px, -15px) rotate(270deg);
        opacity: 0.5;
    }
}

/* Aurora Background Effect */
@keyframes aurora {
    0%, 100% {
        opacity: 0.3;
        transform: translate(0, 0) scale(1);
    }
    33% {
        opacity: 0.5;
        transform: translate(50px, -30px) scale(1.1);
    }
    66% {
        opacity: 0.4;
        transform: translate(-30px, 50px) scale(0.9);
    }
}

/* Timetable Table - Professional Layout with Magic Grid */
.timetable-table {
    padding: 60px 20px;
    background-color: var(--color-dark-background);
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

/* Magic UI Grid Pattern Background */
.timetable-table::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 140, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 140, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

.timetable-table > * {
    position: relative;
    z-index: 1;
}

.timetable-table-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Professional Title Section */
.timetable-title-section {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    position: relative;
}

.timetable-title-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff8c00, transparent);
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.timetable-main-title {
    font-family: var(--font-family-heading);
    font-size: 42px;
    color: var(--color-text-light);
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.timetable-main-title::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: radial-gradient(circle at center, rgba(255, 140, 0, 0.15), transparent 70%);
    border-radius: 8px;
    z-index: -1;
}

.timetable-subtitle {
    font-family: var(--font-family-text);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
}

.timetable-grid {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: transparent;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    overflow: hidden;
}

/* Professional Track Headers - Orange Only */
.timetable-header {
    padding: 25px 20px;
    text-align: center;
    border: none;
    color: var(--color-text-primary);
    background: linear-gradient(135deg, #ff8c00 0%, #e67e00 100%);
    position: relative;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.timetable-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.timetable-header:first-child {
    border-radius: 16px 0 0 0;
}

.timetable-header:last-child {
    border-radius: 0 16px 0 0;
}

.track-name {
    font-family: var(--font-family-heading);
    font-size: 20px;
    color: var(--color-text-primary);
    margin: 0 0 6px 0;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.track-room {
    font-family: var(--font-family-text);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    font-weight: 500;
}

/* Blur Fade Animation */
@keyframes blurFadeIn {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}

/* Spotlight Effect */
@keyframes spotlight {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/* Prismatic Shine Effect */
@keyframes prismaticShine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Professional Session Cells with Grid Pattern */
.timelinebox {
    padding: 35px 30px;
    border: 1px solid rgba(255, 140, 0, 0.15);
    background-color: var(--color-dark-card);
    vertical-align: top;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: blurFadeIn 0.6s ease-out backwards;
    min-height: 520px;
}

/* Magic Grid Pattern in Session Cells */
.timelinebox::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 140, 0, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 140, 0, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
}

.timelinebox > * {
    position: relative;
    z-index: 1;
}

.timelinebox:first-child {
    border-left: 1px solid rgba(255, 140, 0, 0.15);
}

.timelinebox:last-child {
    border-right: 1px solid rgba(255, 140, 0, 0.15);
}

.timetable-row:last-child .timelinebox {
    border-bottom: 1px solid rgba(255, 140, 0, 0.15);
}

/* Stagger animation delays */
.timetable-row:nth-child(1) .timelinebox { animation-delay: 0.1s; }
.timetable-row:nth-child(2) .timelinebox { animation-delay: 0.2s; }
.timetable-row:nth-child(3) .timelinebox { animation-delay: 0.3s; }
.timetable-row:nth-child(4) .timelinebox { animation-delay: 0.4s; }

/* Subtle Hover Effect */
.timelinebox::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 170, 64, 0.08) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.timelinebox:not(.timetable_bg):hover::before {
    opacity: 1;
}

.timelinebox:not(.timetable_bg):hover {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(255, 140, 0, 0.02) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4),
                0 4px 12px rgba(255, 140, 0, 0.2),
                0 0 30px rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.3);
}

/* Break Sessions - Professional Style */
.timelinebox.timetable_bg {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.1);
}

/* Professional Speaker Photo Container with Info Card */
.timelinebox .author {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 16px;
}

/* Elegant Orange Glow Animation for Speaker Photos */
@keyframes elegantGlow {
    0%, 100% {
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4),
                    0 0 20px rgba(255, 140, 0, 0.15);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5),
                    0 0 40px rgba(255, 140, 0, 0.35);
        filter: brightness(1.05);
    }
}

/* Professional Speaker Images - Original Format, Larger */
.timelinebox .author img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 12px;
    border: 3px solid rgba(255, 140, 0, 0.4);
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(255, 140, 0, 0.15);
}

.timelinebox:not(.timetable_bg):hover .author img {
    animation: elegantGlow 2s ease-in-out infinite;
    transform: scale(1.03);
    border-color: rgba(255, 140, 0, 0.7);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(255, 140, 0, 0.3);
}

/* Magic UI Speaker Info Card - Premium Design */
.speaker-info-card {
    width: 100%;
    max-width: 280px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08) 0%, rgba(255, 140, 0, 0.04) 100%);
    border: 2px solid rgba(255, 140, 0, 0.25);
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(255, 140, 0, 0.1);
}

/* Magic Shimmer Effect on Speaker Card */
.speaker-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 140, 0, 0.1),
        transparent
    );
    animation: shimmerCard 3s infinite;
    pointer-events: none;
}

@keyframes shimmerCard {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Hover Effect on Speaker Card */
.timelinebox:not(.timetable_bg):hover .speaker-info-card {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(255, 140, 0, 0.08) 100%);
    border-color: rgba(255, 140, 0, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(255, 140, 0, 0.2);
    transform: translateY(-2px);
}

/* Premium Speaker Name */
.speaker-name {
    font-family: var(--font-family-heading);
    font-size: 18px;
    color: #1c7a7e;
    font-weight: 700;
    margin: 0 0 6px 0;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(28, 122, 126, 0.3);
}

/* Magic Gradient Text Effect on Name */
.timelinebox:not(.timetable_bg):hover .speaker-name {
    background: linear-gradient(90deg, #1c7a7e 0%, #2da5aa 50%, #1c7a7e 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShiftName 3s ease infinite;
}

@keyframes gradientShiftName {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* Premium Speaker Company */
.speaker-company {
    font-family: var(--font-family-text);
    font-size: 14px;
    color: rgba(255, 140, 0, 0.9);
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Subtle Glow on Company Name */
.timelinebox:not(.timetable_bg):hover .speaker-company {
    color: #ff8c00;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.4);
}

/* Professional Session Time - Orange Theme */
.session-time {
    font-family: var(--font-family-text);
    font-size: 15px;
    color: #ff8c00;
    font-weight: 700;
    display: inline-block;
    padding: 8px 14px;
    background: rgba(255, 140, 0, 0.15);
    border-radius: 8px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.1);
}

/* Professional Session Title */
.session-title {
    font-family: var(--font-family-heading);
    font-size: 19px;
    color: var(--color-text-light);
    font-weight: 600;
    margin: 18px 0;
    line-height: 1.5;
    position: relative;
    transition: all 0.3s ease;
    min-height: 60px;
}

.timelinebox:not(.timetable_bg):hover .session-title {
    color: #ff8c00;
}

/* Professional Speaker Name */
.session-speaker {
    font-family: var(--font-family-text);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 12px;
    font-weight: 500;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Shine Effect */
@keyframes shine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Info Section */
.timetable-info {
    padding: 40px 20px;
    background-color: var(--color-dark-background);
}

.timetable-info-box {
    background-color: var(--color-dark-card);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--color-border-light);
    position: relative;
    overflow: hidden;
    animation: blurFadeIn 1s ease-out backwards;
}

/* Shine Border Effect */
.timetable-info-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #ffaa40 25%,
        #9c40ff 50%,
        #ffaa40 75%,
        transparent 100%
    );
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: shine 3s linear infinite;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.info-list li {
    font-family: var(--font-family-text);
    font-size: var(--font-size-medium);
    color: var(--color-text-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-dark);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li::before {
    content: "→ ";
    color: var(--color-gold);
    font-weight: 700;
    margin-right: 10px;
}

/* Pulse Glow Animation */
@keyframes pulseGlowLarge {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 170, 64, 0.3),
                    0 0 40px rgba(255, 170, 64, 0.2),
                    0 0 60px rgba(255, 170, 64, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 170, 64, 0.5),
                    0 0 60px rgba(255, 170, 64, 0.3),
                    0 0 90px rgba(255, 170, 64, 0.2);
    }
}

/* Sparkle Animation */
@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Sparkle Text Effect */
.sparkle-text {
    position: relative;
    display: inline-block;
}

.sparkle-text::before,
.sparkle-text::after {
    content: '✨';
    position: absolute;
    font-size: 20px;
    opacity: 0;
    animation: sparkle 2s ease-in-out infinite;
}

.sparkle-text::before {
    top: -10px;
    left: -30px;
    animation-delay: 0s;
}

.sparkle-text::after {
    top: -10px;
    right: -30px;
    animation-delay: 1s;
}

/* Magic Grid Background */
@keyframes gridPulse {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
}

.magic-grid-bg {
    background-image: 
        linear-gradient(rgba(255, 170, 64, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 170, 64, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPulse 3s ease-in-out infinite;
}

/* Final CTA */
.timetable-final-cta {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--color-dark-background) 0%, var(--color-dark-secondary) 100%);
    position: relative;
    overflow: hidden;
}

/* Sparkle Effect in Background */
.timetable-final-cta::after {
    content: '✨';
    position: absolute;
    font-size: 24px;
    top: 20%;
    left: 10%;
    opacity: 0;
    animation: sparkle 3s ease-in-out infinite;
}

.timetable-final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Light Button Effects Only */
.timetable-final-cta-buttons .widget-button-standard {
    transition: all 0.3s ease;
}

.timetable-final-cta-buttons .widget-button-standard:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 170, 64, 0.3);
}

/* Professional Responsive Design - Always 3 Columns Side by Side */
.timetable-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 140, 0, 0.5) rgba(0, 0, 0, 0.1);
}

/* Custom Scrollbar Styling */
.timetable-table-container::-webkit-scrollbar {
    height: 8px;
}

.timetable-table-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.timetable-table-container::-webkit-scrollbar-thumb {
    background: rgba(255, 140, 0, 0.5);
    border-radius: 4px;
}

.timetable-table-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 140, 0, 0.7);
}

.timetable-grid {
    table-layout: fixed;
    width: 100%;
    min-width: 900px;
}

/* Fixed column widths for 3 tracks */
.timetable-grid thead th {
    width: 33.33%;
}

.timetable-grid tbody td {
    width: 33.33%;
}

@media (max-width: 1200px) {
    .timetable-grid {
        min-width: 750px;
    }
}

@media (max-width: 768px) {
    .timetable-table {
        padding: 20px 10px;
    }
    
    .timetable-title-section {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }
    
    .timetable-main-title {
        font-size: 28px;
    }
    
    .timetable-subtitle {
        font-size: 14px;
    }
    
    .timetable-grid {
        min-width: 600px;
    }
    
    .timelinebox {
        padding: 20px 15px;
        min-height: 400px;
    }
    
    .timelinebox .author img {
        max-width: 150px;
    }
    
    .speaker-info-card {
        max-width: 150px;
        padding: 10px 12px;
    }
    
    .speaker-name {
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .speaker-company {
        font-size: 11px;
    }
    
    .session-time {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .session-title {
        font-size: 15px;
        min-height: 45px;
        margin: 12px 0;
    }
    
    .track-name {
        font-size: 16px;
    }
    
    .track-room {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .timetable-table {
        padding: 15px 5px;
    }
    
    .timetable-title-section {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .timetable-main-title {
        font-size: 24px;
    }
    
    .timetable-subtitle {
        font-size: 13px;
    }
    
    .timetable-grid {
        min-width: 450px;
    }
    
    .timetable-header {
        padding: 15px 10px;
    }
    
    .track-name {
        font-size: 14px;
    }
    
    .track-room {
        font-size: 10px;
    }
    
    .timelinebox {
        padding: 15px 10px;
        min-height: 350px;
    }
    
    .timelinebox .author {
        margin-bottom: 16px;
        gap: 12px;
    }
    
    .timelinebox .author img {
        max-width: 100px;
    }
    
    .speaker-info-card {
        max-width: 100px;
        padding: 8px 10px;
    }
    
    .speaker-name {
        font-size: 12px;
        margin-bottom: 3px;
    }
    
    .speaker-company {
        font-size: 9px;
    }
    
    .session-time {
        font-size: 11px;
        padding: 5px 8px;
        margin-bottom: 12px;
    }
    
    .session-title {
        font-size: 13px;
        min-height: 40px;
        margin: 10px 0;
    }
}

/* Highlight-Gold Span */
.highlight-gold {
    color: var(--color-gold);
}


/* Anklickbare Speaker und Title Links */
.speaker-link {
    text-decoration: none;
    display: block;
    transition: opacity 0.2s ease;
}

.speaker-link:hover {
    opacity: 0.85;
}

.title-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: color 0.2s ease;
}

.title-link:hover {
    color: var(--color-primary);
}

.title-link:hover .session-title {
    text-decoration: underline;
}

/* CTA Button Sections */
.timetable-cta-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
}

.timetable-cta-top {
    margin-bottom: 40px;
}

.timetable-cta-bottom {
    margin-top: 40px;
}

.timetable-cta-button {
    padding: 15px 40px;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timetable-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive CTA Buttons */
@media (max-width: 768px) {
    .timetable-cta-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .timetable-cta-button {
        width: 100%;
        text-align: center;
    }
}
