/* /Layout/MainLayout.razor.rz.scp.css */
main[b-tyay25poo8] {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
/* /Pages/Components/DynamicBackground.razor.rz.scp.css */
/* Grundlayout */
.kiosk-wrapper[b-hbkk6xbfyk] {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Übergang für Hover-Effekte im Grid */
    transition: transform 0.3s ease;
}

/* Hintergrund Medien */
.bg-media[b-hbkk6xbfyk] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dunkles Overlay für Lesbarkeit */
.kiosk-wrapper[b-hbkk6xbfyk]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* Abdunklung */
    z-index: 1;
}

/* Content */
.content-overlay[b-hbkk6xbfyk] {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    /* Standard Padding, wird inline überschrieben wenn nötig */
    padding: 4rem;
}

/* Abdunklung NUR für Vollbild-Modus separat */
.fullscreen-overlay[b-hbkk6xbfyk] {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Header Bereich */
.kiosk-header[b-hbkk6xbfyk] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1rem;
}

    .kiosk-header h1[b-hbkk6xbfyk] {
        /* clamp(min, preferred, max) macht die Schrift responsive zur Box-Größe */
    font-size: clamp(1.5rem, 4vw, 3rem); 
    text-transform: uppercase;
    margin: 0;
    }

.live-clock[b-hbkk6xbfyk] {
    font-size: clamp(0.8rem, 2vw, 1.4rem);
    font-weight: bold;
}

/* Event Liste */
.events-container[b-hbkk6xbfyk] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-card[b-hbkk6xbfyk] {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1); /* Glass Effekt */
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    border-left: 6px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

    /* Aktives Event hervorheben (nutzt Primärfarbe) */
    .event-card.active[b-hbkk6xbfyk] {
        background: rgba(255, 255, 255, 0.2);
        border-left-color: var(--primary-color); /* Z.B. HZD Rot */
        transform: scale(1.02);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

.event-time[b-hbkk6xbfyk] {
    display: flex;
    flex-direction: column;
    font-size: 1.4rem;
    font-weight: bold;
    min-width: 120px;
    margin-right: 2rem;
    color: var(--primary-color); /* Zeit in Branding Farbe */
}

.event-details[b-hbkk6xbfyk] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.subject[b-hbkk6xbfyk] {
    font-size: clamp(1rem, 2.5vw, 2rem);
}

.organizer[b-hbkk6xbfyk] {
    font-size: 1.2rem;
    opacity: 0.8;
    text-transform: uppercase;
}

.status-badge[b-hbkk6xbfyk] {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
