body * {
	color: #e1e1e1;
}
a {
	/* silver */
	color: #C0C0C0 !important

}

        :root {
            --dark-purple: #D9D2E9;
            --border-dark: #333;
        }


        .festival-header {
            background: var(--dark-purple);
            border-radius: 10px 10px 0 0;
            padding: 30px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .festival-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(0,0,0,0.05) 10px,
                rgba(0,0,0,0.05) 20px
            );
        }

        .festival-logo {
            max-width: 100%;
            height: auto;
            margin-bottom: 20px;
        }

        .festival-title {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-weight: 900;
            color: #000;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            z-index: 1;
        }

        .floor-header {
            background: linear-gradient(135deg, #333, #555);
            color: white;
            padding: 15px;
            text-align: center;
            border-radius: 10px 10px 0 0;
            margin-top: 30px;
        }

        .floor-header.headquarter-header {
            background: linear-gradient(135deg, #5c77a5, #10387e);
            margin-top: 0;
        }

        .floor-header.second-floor-header {
            background: linear-gradient(135deg, #5c77a5, #10387e);
        }

        .floor-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .schedule-container {
            background: #fff;
            border-radius: 0 0 10px 10px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        }

        .schedule-table {
            margin: 0;
        }

        .schedule-table thead {
            background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
            color: white;
        }

        .schedule-table thead th {
            padding: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
        }

        .band-row {
            background: #fff;
            transition: all 0.3s ease;
        }

        .band-row:hover {
            background: #f8f9fa;
            transform: translateX(5px);
        }

        .band-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #000;
        }

        .changeover-row {
            background: #f5f5f5;
            font-size: 0.9rem;
            color: #666;
            font-style: italic;
        }

        .changeover-row td {
            padding: 8px 15px;
        }

        .time-badge {
            background: #333;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            display: inline-block;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .time-separator {
            color: #999;
            font-weight: 700;
            padding: 0 8px;
        }

        .einlass-row {
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
        }

        .einlass-row .band-name {

        }

        .footer-info {
            text-align: center;
            color: #fff;
            margin-top: 30px;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .schedule-table {
                font-size: 0.9rem;
            }

            .band-name {
                font-size: 1rem;
            }

            .time-badge {
                font-size: 0.8rem;
                padding: 4px 10px;
            }

            .schedule-table td,
            .schedule-table th {
                padding: 10px 8px;
            }

            .band-row:hover {
                transform: none;
                background: #f0f0f0;
            }
        }

        @media (max-width: 576px) {
            body {
                padding: 10px;
            }

            .festival-header {
                padding: 20px 15px;
            }

            .hide-mobile {
                display: none;
            }

            .time-cell {
                white-space: nowrap;
            }
        }
