@import '_content/ZXingBlazor/ZXingBlazor.bundle.scp.css';

/* /Components/Shared/EventComponent.razor.rz.scp.css */


.event-card[b-b9wc3bf7p8] {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.event-card:hover[b-b9wc3bf7p8] {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.event-header[b-b9wc3bf7p8] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.event-title[b-b9wc3bf7p8] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    flex: 1;
}

.event-date[b-b9wc3bf7p8] {
    background-color: #e7f3ff;
    color: #0066cc;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.event-body[b-b9wc3bf7p8] {
    margin-bottom: 1.25rem;
}

.event-description[b-b9wc3bf7p8] {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 0.75rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-location[b-b9wc3bf7p8] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-size: 0.9rem;
}

.location-icon[b-b9wc3bf7p8] {
    font-size: 1rem;
}

.event-footer[b-b9wc3bf7p8] {
    display: flex;
    justify-content: flex-end;
}

.btn-action[b-b9wc3bf7p8] {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-action:hover[b-b9wc3bf7p8] {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
    transform: translateX(2px);
}

.btn-action:active[b-b9wc3bf7p8] {
    transform: scale(0.98);
}

.arrow[b-b9wc3bf7p8] {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.btn-action:hover .arrow[b-b9wc3bf7p8] {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .event-card[b-b9wc3bf7p8] {
        padding: 1rem;
    }

    .event-header[b-b9wc3bf7p8] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .event-date[b-b9wc3bf7p8] {
        align-self: flex-start;
    }

    .event-title[b-b9wc3bf7p8] {
        font-size: 1.1rem;
    }
}
/* /Components/Shared/MaintenanceMode.razor.rz.scp.css */
/* Maintenance Mode Styles - Generated by GitHub Copilot */

.maintenance-overlay[b-e487r0nmin] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 1rem;
}

.maintenance-container[b-e487r0nmin] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: fadeInUp-b-e487r0nmin 0.5s ease-out;
}

@keyframes fadeInUp-b-e487r0nmin {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.maintenance-icon[b-e487r0nmin] {
    color: #4A90E2;
    margin-bottom: 1.5rem;
    animation: pulse-b-e487r0nmin 2s ease-in-out infinite;
}

@keyframes pulse-b-e487r0nmin {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.maintenance-title[b-e487r0nmin] {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.maintenance-message[b-e487r0nmin] {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.maintenance-time[b-e487r0nmin] {
    background: rgba(74, 144, 226, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1.5rem;
}

.maintenance-time span[b-e487r0nmin] {
    color: #4A90E2;
    font-weight: 600;
    font-size: 0.95rem;
}

.maintenance-footer[b-e487r0nmin] {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.maintenance-footer p[b-e487r0nmin] {
    color: #718096;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.refresh-button[b-e487r0nmin] {
    background: rgba(74, 144, 226, 0.92);
    backdrop-filter: blur(10px);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.refresh-button:hover[b-e487r0nmin] {
    background: rgba(74, 144, 226, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
}

.refresh-button:active[b-e487r0nmin] {
    transform: translateY(0);
}

@media (max-width: 640px) {
    .maintenance-container[b-e487r0nmin] {
        padding: 2rem 1.5rem;
    }

    .maintenance-title[b-e487r0nmin] {
        font-size: 1.5rem;
    }

    .maintenance-message[b-e487r0nmin] {
        font-size: 1rem;
    }
}
/* /Components/Shared/PwaInstallBanner.razor.rz.scp.css */
body[b-jjbff7qd8z] {
}
.pwa-install-banner[b-jjbff7qd8z] {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 600px;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    animation: slideDown-b-jjbff7qd8z 0.4s ease-out;
    padding: 16px;
    border-radius: 12px;
}

@keyframes slideDown-b-jjbff7qd8z {
    from {
        transform: translateX(-50%) translateY(-150%);
        opacity: 0;
    }

    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.pwa-banner-content[b-jjbff7qd8z] {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.pwa-banner-icon img[b-jjbff7qd8z] {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pwa-banner-text[b-jjbff7qd8z] {
    flex: 1;
}

    .pwa-banner-text h3[b-jjbff7qd8z] {
        margin: 0 0 4px 0;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .pwa-banner-text p[b-jjbff7qd8z] {
        margin: 0;
        font-size: 0.9rem;
        opacity: 0.95;
    }

    .pwa-banner-text strong[b-jjbff7qd8z] {
        font-weight: 700;
    }

.ios-share-icon[b-jjbff7qd8z] {
    display: inline-block;
    font-size: 1.1rem;
    vertical-align: middle;
}

.pwa-banner-actions[b-jjbff7qd8z] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pwa-btn-install[b-jjbff7qd8z] {
    background: white;
    color: #4A90E2;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

    .pwa-btn-install:hover:not(:disabled)[b-jjbff7qd8z] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .pwa-btn-install:disabled[b-jjbff7qd8z] {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .pwa-btn-install:active:not(:disabled)[b-jjbff7qd8z] {
        transform: translateY(0);
    }

    .pwa-btn-install .icon[b-jjbff7qd8z] {
        font-size: 1.2rem;
    }

.pwa-btn-close[b-jjbff7qd8z] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

    .pwa-btn-close:hover[b-jjbff7qd8z] {
        background: rgba(255, 255, 255, 0.3);
    }

.pwa-error-message[b-jjbff7qd8z] {
    margin-top: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.4;
    animation: fadeIn-b-jjbff7qd8z 0.3s ease-out;
}

@keyframes fadeIn-b-jjbff7qd8z {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .pwa-install-banner[b-jjbff7qd8z] {
        top: 8px;
        width: calc(100% - 16px);
        padding: 12px;
    }

    .pwa-banner-content[b-jjbff7qd8z] {
        flex-wrap: wrap;
    }

    .pwa-banner-text h3[b-jjbff7qd8z] {
        font-size: 1rem;
    }

    .pwa-banner-text p[b-jjbff7qd8z] {
        font-size: 0.85rem;
    }

    .pwa-btn-install[b-jjbff7qd8z] {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}
/* /Components/Shared/UpdateAvailableDetector.razor.rz.scp.css */
.update-notification[b-60lkdfec3h] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    animation: slideIn-b-60lkdfec3h 0.5s ease-out;
}

.update-button[b-60lkdfec3h] {
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .update-button:hover[b-60lkdfec3h] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
    }

    .update-button:active[b-60lkdfec3h] {
        transform: translateY(0);
    }

@keyframes slideIn-b-60lkdfec3h {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Für mobile Geräte */
@media (max-width: 768px) {
    .update-notification[b-60lkdfec3h] {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .update-button[b-60lkdfec3h] {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 12px 20px;
    }
}
/* /Layout/FbglLayout.razor.rz.scp.css */
.page[b-yzaie9j1wu] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-yzaie9j1wu] {
    flex: 1;
}

.sidebar[b-yzaie9j1wu] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-yzaie9j1wu] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-yzaie9j1wu]  a, .top-row[b-yzaie9j1wu]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-yzaie9j1wu]  a:hover, .top-row[b-yzaie9j1wu]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-yzaie9j1wu]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row[b-yzaie9j1wu] {
        justify-content: space-between;
    }

        .top-row[b-yzaie9j1wu]  a, .top-row[b-yzaie9j1wu]  .btn-link {
            margin-left: 0;
        }
}

@media (min-width: 641px) {
    .page[b-yzaie9j1wu] {
        flex-direction: row;
    }

    .sidebar[b-yzaie9j1wu] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-yzaie9j1wu] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-yzaie9j1wu]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-yzaie9j1wu], article[b-yzaie9j1wu] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-xcavwv94sy] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-xcavwv94sy] {
    flex: 1;
}

.sidebar[b-xcavwv94sy] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-xcavwv94sy] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-xcavwv94sy]  a, .top-row[b-xcavwv94sy]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-xcavwv94sy]  a:hover, .top-row[b-xcavwv94sy]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-xcavwv94sy]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-xcavwv94sy] {
        justify-content: space-between;
    }

    .top-row[b-xcavwv94sy]  a, .top-row[b-xcavwv94sy]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-xcavwv94sy] {
        flex-direction: row;
    }

    .sidebar[b-xcavwv94sy] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-xcavwv94sy] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-xcavwv94sy]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-xcavwv94sy], article[b-xcavwv94sy] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-l2eh4r25vh] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-l2eh4r25vh] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-l2eh4r25vh] {
    font-size: 1.1rem;
}

.bi[b-l2eh4r25vh] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-l2eh4r25vh] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-l2eh4r25vh] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-l2eh4r25vh] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-l2eh4r25vh] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-l2eh4r25vh] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-l2eh4r25vh] {
        padding-bottom: 1rem;
    }

    .nav-item[b-l2eh4r25vh]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-l2eh4r25vh]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-l2eh4r25vh]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-l2eh4r25vh] {
        display: none;
    }

    .collapse[b-l2eh4r25vh] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-l2eh4r25vh] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/fbgl/FbglDashboardPage.razor.rz.scp.css */
body[b-vtj0nsa57j] {
}

.fbgl-dashboard-container[b-vtj0nsa57j] {
    max-width: 100vw;
    margin: 0;
    padding: 1rem 0.75rem;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 120px;
}

    .fbgl-dashboard-container[b-vtj0nsa57j]::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 250px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
        pointer-events: none;
        z-index: 0;
    }

/* Page Header */
.page-header[b-vtj0nsa57j] {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInDown-b-vtj0nsa57j 0.6s ease;
}

    .page-header h1[b-vtj0nsa57j] {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        margin: 0 0 0.375rem 0;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .page-header p[b-vtj0nsa57j] {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
        font-weight: 500;
    }

/* Header Content Layout - für zentrierten Text mit Logout-Button */
.page-header .header-content[b-vtj0nsa57j] {
    position: relative;
    display: block;
    text-align: center;
}

    .page-header .header-content > div[b-vtj0nsa57j] {
        display: inline-block;
        text-align: center;
    }

@keyframes fadeInDown-b-vtj0nsa57j {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Wrapper */
.content-wrapper[b-vtj0nsa57j] {
    position: relative;
    z-index: 1;
}

/* Loading State */
.loading-container[b-vtj0nsa57j] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}

    .loading-container p[b-vtj0nsa57j] {
        color: white;
        font-size: 0.95rem;
        font-weight: 500;
        margin-top: 1rem;
    }

.spinner[b-vtj0nsa57j] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-vtj0nsa57j 0.8s linear infinite;
}

@keyframes spin-b-vtj0nsa57j {
    to {
        transform: rotate(360deg);
    }
}

/* Card Base Styles */
.group-card[b-vtj0nsa57j],
.lessons-card[b-vtj0nsa57j] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    animation: fadeInUp-b-vtj0nsa57j 0.5s ease;
}

@keyframes fadeInUp-b-vtj0nsa57j {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Headers */
.card-header[b-vtj0nsa57j] {
    padding: 1.125rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
    border-bottom: 2px solid rgba(74, 144, 226, 0.1);
}

    .card-header:active[b-vtj0nsa57j] {
        background: rgba(74, 144, 226, 0.05);
    }

.card-header-with-action[b-vtj0nsa57j] {
    padding: 1.125rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(74, 144, 226, 0.1);
}

    .card-header-with-action h2[b-vtj0nsa57j],
    .card-header h2[b-vtj0nsa57j] {
        font-size: 1.063rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0;
    }

/* Header Content für Card-Header (nicht Page-Header) */
.card-header .header-content[b-vtj0nsa57j] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.member-count[b-vtj0nsa57j] {
    background: rgba(74, 144, 226, 0.12);
    color: #4A90E2;
    padding: 0.25rem 0.625rem;
    border-radius: 8px;
    font-size: 0.813rem;
    font-weight: 600;
}

.toggle-icon[b-vtj0nsa57j] {
    font-size: 0.875rem;
    color: #4A90E2;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Button Add */
.btn-add[b-vtj0nsa57j] {
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 100%);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

    .btn-add:active[b-vtj0nsa57j] {
        transform: scale(0.96);
    }

/* Logout Button - dezent positioniert */
.btn-logout[b-vtj0nsa57j] {
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 10px;
    background-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

    .btn-logout:hover[b-vtj0nsa57j] {
        background-color: rgba(255, 255, 255, 0.3);
        color: white;
        border-color: rgba(255, 255, 255, 0.5);
    }

    .btn-logout:active[b-vtj0nsa57j] {
        transform: scale(0.95);
    }

/* Group Content */
.group-content[b-vtj0nsa57j] {
    padding: 1.125rem;
    animation: slideDown-b-vtj0nsa57j 0.3s ease;
}

@keyframes slideDown-b-vtj0nsa57j {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.group-info[b-vtj0nsa57j] {
    margin-bottom: 1rem;
}

    .group-info h3[b-vtj0nsa57j] {
        font-size: 1rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 0.5rem 0;
    }

.group-description[b-vtj0nsa57j] {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Candidates List */
.candidates-list[b-vtj0nsa57j] {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.candidate-item[b-vtj0nsa57j] {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(91, 127, 219, 0.08) 100%);
    border-radius: 12px;
    padding: 0.875rem;
    transition: all 0.2s ease;
}

    .candidate-item:active[b-vtj0nsa57j] {
        transform: scale(0.98);
        background: linear-gradient(135deg, rgba(74, 144, 226, 0.12) 0%, rgba(91, 127, 219, 0.12) 100%);
    }

.candidate-info[b-vtj0nsa57j] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.candidate-icon[b-vtj0nsa57j] {
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

.candidate-details[b-vtj0nsa57j] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.candidate-name[b-vtj0nsa57j] {
    font-size: 0.938rem;
    font-weight: 600;
    color: #1a1a1a;
}

.candidate-points[b-vtj0nsa57j] {
    font-size: 0.813rem;
    font-weight: 600;
    color: #4A90E2;
}

/* Lessons List */
.lessons-list[b-vtj0nsa57j] {
    padding: 1.125rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lesson-item[b-vtj0nsa57j] {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(91, 127, 219, 0.08) 100%);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

    .lesson-item:active[b-vtj0nsa57j] {
        transform: scale(0.98);
        background: linear-gradient(135deg, rgba(74, 144, 226, 0.12) 0%, rgba(91, 127, 219, 0.12) 100%);
        border-color: rgba(74, 144, 226, 0.2);
    }

.lesson-header[b-vtj0nsa57j] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.lesson-title[b-vtj0nsa57j] {
    font-size: 0.938rem;
    font-weight: 700;
    color: #1a1a1a;
    flex: 1;
}

.lesson-date[b-vtj0nsa57j] {
    font-size: 0.813rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 100%);
    padding: 0.25rem 0.625rem;
    border-radius: 8px;
    white-space: nowrap;
    margin-left: 0.75rem;
}

.lesson-description[b-vtj0nsa57j] {
    font-size: 0.813rem;
    color: #666;
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
}

.lesson-footer[b-vtj0nsa57j] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lesson-location[b-vtj0nsa57j] {
    font-size: 0.813rem;
    color: #666;
}

.lesson-points[b-vtj0nsa57j] {
    font-size: 0.813rem;
    font-weight: 600;
    color: #4A90E2;
}

.lesson-arrow[b-vtj0nsa57j] {
    font-size: 1.25rem;
    color: #4A90E2;
}

/* Empty State */
.empty-state-small[b-vtj0nsa57j] {
    padding: 2rem 1.125rem;
    text-align: center;
}

    .empty-state-small p[b-vtj0nsa57j] {
        font-size: 0.875rem;
        color: #666;
        margin: 0;
        font-style: italic;
    }

/* Dialog */
.dialog-backdrop[b-vtj0nsa57j] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.dialog[b-vtj0nsa57j] {
    background: white;
    border-radius: 18px;
    padding: 1.5rem;
    max-width: 500px;
    width: 100%;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: dialogSlideIn-b-vtj0nsa57j 0.3s ease;
    margin: auto;
}

@keyframes dialogSlideIn-b-vtj0nsa57j {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

    .dialog h3[b-vtj0nsa57j] {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 1.5rem 0;
    }

.form-group[b-vtj0nsa57j] {
    margin-bottom: 1.25rem;
}

    .form-group label[b-vtj0nsa57j] {
        display: block;
        font-size: 0.875rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.5rem;
    }

    .form-group input[b-vtj0nsa57j],
    .form-group textarea[b-vtj0nsa57j] {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0.75rem;
        border: 2px solid rgba(74, 144, 226, 0.2);
        border-radius: 10px;
        font-size: 0.938rem;
        transition: border-color 0.2s ease;
        font-family: inherit;
        -webkit-appearance: none;
        appearance: none;
    }

        .form-group input:focus[b-vtj0nsa57j],
        .form-group textarea:focus[b-vtj0nsa57j] {
            outline: none;
            border-color: #4A90E2;
        }

    /* Spezielle Styles für Date und Time Inputs */
    .form-group input[type="date"][b-vtj0nsa57j],
    .form-group input[type="time"][b-vtj0nsa57j] {
        min-height: 44px;
        background-color: white;
        cursor: pointer;
    }

    .form-group textarea[b-vtj0nsa57j] {
        resize: vertical;
        min-height: 80px;
    }

/* Time Inputs Container */
.time-inputs[b-vtj0nsa57j] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

    .time-inputs input[type="time"][b-vtj0nsa57j] {
        flex: 1;
        min-width: 0;
    }

    .time-inputs span[b-vtj0nsa57j] {
        flex-shrink: 0;
        font-size: 0.875rem;
        color: #666;
        font-weight: 500;
        padding: 0 0.25rem;
    }

.dialog-actions[b-vtj0nsa57j] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn-cancel[b-vtj0nsa57j],
.btn-save[b-vtj0nsa57j] {
    flex: 1;
    padding: 0.875rem;
    border: none;
    border-radius: 10px;
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-cancel[b-vtj0nsa57j] {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 2px solid #dc3545;
}

    .btn-cancel:active[b-vtj0nsa57j] {
        transform: scale(0.98);
        background: rgba(220, 53, 69, 0.2);
    }

.btn-save[b-vtj0nsa57j] {
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

    .btn-save:disabled[b-vtj0nsa57j] {
        opacity: 0.6;
        cursor: not-allowed;
    }

    .btn-save:not(:disabled):active[b-vtj0nsa57j] {
        transform: scale(0.98);
    }

/* Responsive Design */
@media (max-width: 640px) {
    .fbgl-dashboard-container[b-vtj0nsa57j] {
        padding: 1rem 0.75rem;
        padding-top: calc(env(safe-area-inset-top) + 1rem);
        padding-bottom: calc(env(safe-area-inset-bottom) + 110px);
    }

    .page-header[b-vtj0nsa57j] {
        margin-top: 2rem;
    }

        .page-header h1[b-vtj0nsa57j] {
            font-size: 1.5rem;
        }

    .dialog[b-vtj0nsa57j] {
        padding: 1.25rem;
        border-radius: 16px;
        max-height: calc(100vh - 1rem);
    }

        .dialog h3[b-vtj0nsa57j] {
            font-size: 1.125rem;
            margin-bottom: 1.25rem;
        }

    .form-group[b-vtj0nsa57j] {
        margin-bottom: 1rem;
    }

        .form-group input[b-vtj0nsa57j],
        .form-group textarea[b-vtj0nsa57j] {
            font-size: 16px; /* Verhindert Zoom auf iPhone */
            padding: 0.625rem;
        }

    .time-inputs[b-vtj0nsa57j] {
        gap: 0.375rem;
    }

        .time-inputs span[b-vtj0nsa57j] {
            font-size: 0.813rem;
        }

    .dialog-actions[b-vtj0nsa57j] {
        margin-top: 1.25rem;
        gap: 0.5rem;
    }

    .btn-cancel[b-vtj0nsa57j],
    .btn-save[b-vtj0nsa57j] {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}

/* iPhone-spezifische Anpassungen */
@supports (-webkit-touch-callout: none) {
    .form-group input[type="date"][b-vtj0nsa57j]::-webkit-calendar-picker-indicator,
    .form-group input[type="time"][b-vtj0nsa57j]::-webkit-calendar-picker-indicator {
        display: block;
        background: transparent;
        cursor: pointer;
    }

    .form-group input[type="date"][b-vtj0nsa57j],
    .form-group input[type="time"][b-vtj0nsa57j] {
        -webkit-appearance: none;
        appearance: none;
        background-color: white;
    }
}

@media (min-width: 768px) {
    .fbgl-dashboard-container[b-vtj0nsa57j] {
        padding: 2rem 1.5rem;
    }

    .content-wrapper[b-vtj0nsa57j] {
        max-width: 900px;
        margin: 0 auto;
    }

    .dialog[b-vtj0nsa57j] {
        max-height: calc(100vh - 4rem);
    }
}
/* /Pages/fbgl/FbglLessonDetailPage.razor.rz.scp.css */
body[b-ri2kod9sd3] {
}

.lesson-detail-container[b-ri2kod9sd3] {
    max-width: 100vw;
    margin: 0;
    padding: 1rem 0.75rem;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 120px;
}

.lesson-detail-container[b-ri2kod9sd3]::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 250px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
        pointer-events: none;
        z-index: 0;
    }

/* Page Header */
.page-header[b-ri2kod9sd3] {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInDown-b-ri2kod9sd3 0.6s ease;
}

.btn-back[b-ri2kod9sd3] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
    flex-shrink: 0;
}

.btn-back:active[b-ri2kod9sd3] {
        transform: scale(0.95);
        background: rgba(255, 255, 255, 0.3);
    }

.header-content[b-ri2kod9sd3] {
    flex: 1;
}

.header-content h1[b-ri2kod9sd3] {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        margin: 0 0 0.25rem 0;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

.header-content p[b-ri2kod9sd3] {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
        font-weight: 500;
    }

@keyframes fadeInDown-b-ri2kod9sd3 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Wrapper */
.content-wrapper[b-ri2kod9sd3] {
    position: relative;
    z-index: 1;
}

/* Loading State */
.loading-container[b-ri2kod9sd3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}

.loading-container p[b-ri2kod9sd3] {
        color: white;
        font-size: 0.95rem;
        font-weight: 500;
        margin-top: 1rem;
    }

.spinner[b-ri2kod9sd3] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-ri2kod9sd3 0.8s linear infinite;
}

@keyframes spin-b-ri2kod9sd3 {
    to {
        transform: rotate(360deg);
    }
}

/* Empty State */
.empty-state[b-ri2kod9sd3] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: fadeInUp-b-ri2kod9sd3 0.5s ease;
}

.empty-icon[b-ri2kod9sd3] {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.empty-state h3[b-ri2kod9sd3] {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 0.5rem 0;
    }

.empty-state p[b-ri2kod9sd3] {
        font-size: 0.938rem;
        color: #666;
        margin: 0 0 1.5rem 0;
        line-height: 1.5;
    }

@keyframes fadeInUp-b-ri2kod9sd3 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lesson Card */
.lesson-card[b-ri2kod9sd3] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    animation: fadeInUp-b-ri2kod9sd3 0.5s ease;
}

.card-header-main[b-ri2kod9sd3] {
    padding: 1.25rem;
    border-bottom: 2px solid rgba(74, 144, 226, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.card-header-main h2[b-ri2kod9sd3] {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0;
        word-wrap: break-word;
    }

.lesson-date-badge[b-ri2kod9sd3] {
    display: inline-block;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 100%);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    align-self: flex-start;
}

/* Lesson Details */
.lesson-details[b-ri2kod9sd3] {
    padding: 1.25rem;
}

.detail-section[b-ri2kod9sd3] {
    margin-bottom: 1.5rem;
}

.detail-section:last-child[b-ri2kod9sd3] {
        margin-bottom: 0;
    }

.detail-section h3[b-ri2kod9sd3] {
        font-size: 0.875rem;
        font-weight: 700;
        color: #4A90E2;
        margin: 0 0 0.5rem 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.detail-section p[b-ri2kod9sd3] {
        font-size: 0.938rem;
        color: #333;
        margin: 0;
        line-height: 1.6;
    }

.time-info[b-ri2kod9sd3] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.time-item[b-ri2kod9sd3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(91, 127, 219, 0.08) 100%);
    border-radius: 10px;
}

.time-label[b-ri2kod9sd3] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
}

.time-value[b-ri2kod9sd3] {
    font-size: 0.938rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Action Buttons */
.action-buttons[b-ri2kod9sd3] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: fadeInUp-b-ri2kod9sd3 0.6s ease;
}

.btn-primary[b-ri2kod9sd3],
.btn-danger[b-ri2kod9sd3] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-icon[b-ri2kod9sd3] {
    font-size: 1.25rem;
}

.btn-attendance[b-ri2kod9sd3] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.btn-attendance:active[b-ri2kod9sd3] {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

.btn-delete[b-ri2kod9sd3] {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.btn-delete:active[b-ri2kod9sd3] {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

.btn-delete:disabled[b-ri2kod9sd3] {
        background: linear-gradient(135deg, #999 0%, #888 100%);
        color: rgba(255, 255, 255, 0.6);
        cursor: not-allowed;
        opacity: 0.6;
    }

.btn-delete:disabled:active[b-ri2kod9sd3] {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

/* Dialog */
.dialog-backdrop[b-ri2kod9sd3] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.dialog[b-ri2kod9sd3] {
    background: white;
    border-radius: 18px;
    padding: 1.5rem;
    max-width: 400px;
    width: 100%;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: dialogSlideIn-b-ri2kod9sd3 0.3s ease;
    margin: auto;
    text-align: center;
}

@keyframes dialogSlideIn-b-ri2kod9sd3 {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dialog-icon-warning[b-ri2kod9sd3] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.dialog h3[b-ri2kod9sd3] {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 1rem 0;
    }

.dialog-text[b-ri2kod9sd3] {
    font-size: 0.938rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.dialog-text strong[b-ri2kod9sd3] {
        color: #1a1a1a;
        font-weight: 600;
    }

.dialog-actions[b-ri2kod9sd3] {
    display: flex;
    gap: 0.75rem;
}

.btn-cancel[b-ri2kod9sd3],
.btn-confirm-delete[b-ri2kod9sd3] {
    flex: 1;
    padding: 0.875rem;
    border: none;
    border-radius: 10px;
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cancel[b-ri2kod9sd3] {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 2px solid #6c757d;
}

.btn-cancel:active[b-ri2kod9sd3] {
        transform: scale(0.98);
        background: rgba(108, 117, 125, 0.2);
    }

.btn-cancel:disabled[b-ri2kod9sd3] {
        opacity: 0.5;
        cursor: not-allowed;
    }

.btn-confirm-delete[b-ri2kod9sd3] {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-confirm-delete:active[b-ri2kod9sd3] {
        transform: scale(0.98);
    }

.btn-confirm-delete:disabled[b-ri2kod9sd3] {
        opacity: 0.6;
        cursor: not-allowed;
    };

/* Responsive Design */
@media (max-width: 640px)[b-ri2kod9sd3] {
    .lesson-detail-container {
        padding: 1rem 0.75rem;
        padding-top: calc(env(safe-area-inset-top) + 1rem);
        padding-bottom: calc(env(safe-area-inset-bottom) + 110px);
    }

    .page-header[b-ri2kod9sd3] {
        margin-top: 2rem;
    }

    .page-header h1[b-ri2kod9sd3] {
        font-size: 1.375rem;
    }

    .card-header-main h2[b-ri2kod9sd3] {
        font-size: 1.125rem;
    }

    .dialog[b-ri2kod9sd3] {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .dialog h3[b-ri2kod9sd3] {
        font-size: 1.125rem;
    }

    .dialog-text[b-ri2kod9sd3] {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .lesson-detail-container[b-ri2kod9sd3] {
        padding: 2rem 1.5rem;
    }

    .content-wrapper[b-ri2kod9sd3] {
        max-width: 700px;
        margin: 0 auto;
    }

    .action-buttons[b-ri2kod9sd3] {
        flex-direction: row;
    }
}
/* /Pages/fbgl/FbglMorePage.razor.rz.scp.css */
.more-container[b-o8fswu0ovn] {
    min-height: 100vh;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 20px 100px 20px;
}

.content-wrapper[b-o8fswu0ovn] {
    max-width: 800px;
    margin: 0 auto;
}

/* Page Header */
.page-header[b-o8fswu0ovn] {
    text-align: center;
    margin-bottom: 30px;
}

    .page-header h1[b-o8fswu0ovn] {
        font-size: 32px;
        font-weight: 700;
        color: #1b6ec2;
        margin: 0 0 8px 0;
    }

.subtitle[b-o8fswu0ovn] {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
}

/* Info Card */
.info-card[b-o8fswu0ovn] {
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    border: 1px solid rgba(27,110,194,0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.info-icon-wrapper[b-o8fswu0ovn] {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.info-icon[b-o8fswu0ovn] {
    font-size: 48px;
}

.info-content h2[b-o8fswu0ovn] {
    font-size: 22px;
    font-weight: 600;
    color: #1b6ec2;
    margin: 0 0 12px 0;
    text-align: center;
}

.info-content p[b-o8fswu0ovn] {
    font-size: 15px;
    color: #495057;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

/* Coming Soon Card */
.coming-soon-card[b-o8fswu0ovn] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.3);
    color: white;
}

.coming-soon-header[b-o8fswu0ovn] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.coming-soon-icon[b-o8fswu0ovn] {
    font-size: 32px;
}

.coming-soon-header h3[b-o8fswu0ovn] {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.coming-soon-text[b-o8fswu0ovn] {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    opacity: 0.95;
}

.features-list[b-o8fswu0ovn] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.feature-item[b-o8fswu0ovn] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.feature-icon[b-o8fswu0ovn] {
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text[b-o8fswu0ovn] {
    font-size: 14px;
    font-weight: 500;
}

/* Contact Card */
.contact-card[b-o8fswu0ovn] {
    background: linear-gradient(135deg, #1b6ec2 0%, #264a8f 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(27, 110, 194, 0.3);
    color: white;
}

.contact-header[b-o8fswu0ovn] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-icon[b-o8fswu0ovn] {
    font-size: 28px;
}

.contact-header h3[b-o8fswu0ovn] {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.contact-description[b-o8fswu0ovn] {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    opacity: 0.95;
}

.contact-info[b-o8fswu0ovn] {
    margin-bottom: 20px;
}

.contact-detail[b-o8fswu0ovn] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-label[b-o8fswu0ovn] {
    font-size: 14px;
    opacity: 0.9;
}

.email-link[b-o8fswu0ovn] {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: background 0.2s ease;
}

    .email-link:hover[b-o8fswu0ovn] {
        background: rgba(255, 255, 255, 0.25);
        text-decoration: none;
        color: white;
    }

.btn-contact[b-o8fswu0ovn] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: white;
    color: #1b6ec2;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

    .btn-contact:hover[b-o8fswu0ovn] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

    .btn-contact:active[b-o8fswu0ovn] {
        transform: translateY(0);
    }

/* Bug Card */
.bug-card[b-o8fswu0ovn] {
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    border: 1px solid rgba(255, 87, 34, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.bug-header[b-o8fswu0ovn] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.bug-icon[b-o8fswu0ovn] {
    font-size: 28px;
}

.bug-header h3[b-o8fswu0ovn] {
    font-size: 20px;
    font-weight: 600;
    color: #ff5722;
    margin: 0;
}

.bug-text[b-o8fswu0ovn] {
    font-size: 15px;
    color: #495057;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.btn-bug-report[b-o8fswu0ovn] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #ff5722 0%, #e64a19 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

    .btn-bug-report:hover[b-o8fswu0ovn] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 87, 34, 0.4);
    }

    .btn-bug-report:active[b-o8fswu0ovn] {
        transform: translateY(0);
    }

.btn-icon[b-o8fswu0ovn] {
    font-size: 20px;
}

/* Version Card */
.version-card[b-o8fswu0ovn] {
    display: flex;
    justify-content: space-around;
    gap: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    border: 1px solid rgba(108, 117, 125, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.version-info[b-o8fswu0ovn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.version-label[b-o8fswu0ovn] {
    font-size: 13px;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.version-number[b-o8fswu0ovn] {
    font-size: 18px;
    color: #1b6ec2;
    font-weight: 700;
}

/* Footer */
.footer-text[b-o8fswu0ovn] {
    text-align: center;
    padding: 20px 0;
}

    .footer-text p[b-o8fswu0ovn] {
        font-size: 13px;
        color: #6c757d;
        margin: 4px 0;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .more-container[b-o8fswu0ovn] {
        padding: 16px 16px 100px 16px;
    }

    .page-header h1[b-o8fswu0ovn] {
        font-size: 28px;
    }

    .info-card[b-o8fswu0ovn],
    .coming-soon-card[b-o8fswu0ovn],
    .contact-card[b-o8fswu0ovn],
    .bug-card[b-o8fswu0ovn] {
        padding: 20px;
    }

    .features-list[b-o8fswu0ovn] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .page-header h1[b-o8fswu0ovn] {
        font-size: 24px;
    }

    .info-icon[b-o8fswu0ovn] {
        font-size: 40px;
    }

    .contact-icon[b-o8fswu0ovn],
    .bug-icon[b-o8fswu0ovn],
    .coming-soon-icon[b-o8fswu0ovn] {
        font-size: 24px;
    }

    .btn-contact[b-o8fswu0ovn],
    .btn-bug-report[b-o8fswu0ovn] {
        font-size: 15px;
        padding: 12px 20px;
    }

    .version-card[b-o8fswu0ovn] {
        flex-direction: column;
        gap: 12px;
    }
}
/* /Pages/fbgl/FbglPresencePage.razor.rz.scp.css */
body[b-60jqqt4xo8] {
}

.presence-container[b-60jqqt4xo8] {
    max-width: 100vw;
    margin: 0;
    padding: 1rem 0.75rem;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 120px;
}

    .presence-container[b-60jqqt4xo8]::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 250px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
        pointer-events: none;
        z-index: 0;
    }

/* Page Header */
.page-header[b-60jqqt4xo8] {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInDown-b-60jqqt4xo8 0.5s ease;
}

    .page-header h1[b-60jqqt4xo8] {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        margin: 0 0 0.25rem 0;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        line-height: 1.2;
    }

    .page-header p[b-60jqqt4xo8] {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
        font-weight: 500;
    }

.header-content[b-60jqqt4xo8] {
    flex: 1;
}

.btn-back[b-60jqqt4xo8] {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .btn-back:active[b-60jqqt4xo8] {
        transform: scale(0.95);
        background: rgba(255, 255, 255, 0.35);
    }

@keyframes fadeInDown-b-60jqqt4xo8 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Wrapper */
.content-wrapper[b-60jqqt4xo8] {
    position: relative;
    z-index: 1;
}

/* Loading State */
.loading-container[b-60jqqt4xo8],
.empty-state[b-60jqqt4xo8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    min-height: 50vh;
}

.loading-container p[b-60jqqt4xo8] {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 1rem;
}

.spinner[b-60jqqt4xo8] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-60jqqt4xo8 0.8s linear infinite;
}

@keyframes spin-b-60jqqt4xo8 {
    to {
        transform: rotate(360deg);
    }
}

.empty-state[b-60jqqt4xo8] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 3rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.empty-icon[b-60jqqt4xo8] {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

    .empty-state h3[b-60jqqt4xo8] {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 0.5rem 0;
    }

    .empty-state p[b-60jqqt4xo8] {
        font-size: 0.95rem;
        color: #6c757d;
        margin: 0 0 1.5rem 0;
    }

.btn-primary[b-60jqqt4xo8] {
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

    .btn-primary:active[b-60jqqt4xo8] {
        transform: scale(0.98);
    }

/* Info Banner for Existing Data */
.info-banner[b-60jqqt4xo8] {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.25) 0%, rgba(255, 152, 0, 0.25) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 193, 7, 0.4);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
    animation: fadeInUp-b-60jqqt4xo8 0.5s ease both;
}

.info-banner-icon[b-60jqqt4xo8] {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-banner-text[b-60jqqt4xo8] {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Lesson Info Banner */
.lesson-info-banner[b-60jqqt4xo8] {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp-b-60jqqt4xo8 0.5s ease 0.1s both;
}

.info-item[b-60jqqt4xo8] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-icon[b-60jqqt4xo8] {
    font-size: 1.25rem;
}

.info-text[b-60jqqt4xo8] {
    color: white;
    font-size: 0.938rem;
    font-weight: 600;
}

@keyframes fadeInUp-b-60jqqt4xo8 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Candidates Card */
.candidates-card[b-60jqqt4xo8] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp-b-60jqqt4xo8 0.5s ease 0.2s both;
}

.candidate-presence-item[b-60jqqt4xo8] {
    background: white;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    border: 2px solid rgba(74, 144, 226, 0.1);
    transition: all 0.2s ease;
}

    .candidate-presence-item:last-child[b-60jqqt4xo8] {
        margin-bottom: 0;
    }

.candidate-header[b-60jqqt4xo8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
    user-select: none;
}

    .candidate-header:active[b-60jqqt4xo8] {
        background: rgba(74, 144, 226, 0.05);
    }

.candidate-info[b-60jqqt4xo8] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.candidate-avatar[b-60jqqt4xo8] {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(91, 127, 219, 0.15) 100%);
    border-radius: 50%;
}

.candidate-details[b-60jqqt4xo8] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.candidate-name[b-60jqqt4xo8] {
    font-size: 0.938rem;
    font-weight: 700;
    color: #1a1a1a;
}

.has-comment[b-60jqqt4xo8] {
    font-size: 0.75rem;
    color: #4A90E2;
    font-weight: 600;
}

.status-badge[b-60jqqt4xo8] {
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    font-size: 0.813rem;
    font-weight: 700;
    white-space: nowrap;
}

    .status-badge.present[b-60jqqt4xo8] {
        background: linear-gradient(135deg, rgba(40, 167, 69, 0.15) 0%, rgba(34, 139, 34, 0.15) 100%);
        color: #28a745;
        border: 1px solid rgba(40, 167, 69, 0.3);
    }

    .status-badge.delayed[b-60jqqt4xo8] {
        background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.15) 100%);
        color: #ff9800;
        border: 1px solid rgba(255, 193, 7, 0.3);
    }

    .status-badge.absent[b-60jqqt4xo8] {
        background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(200, 35, 51, 0.15) 100%);
        color: #dc3545;
        border: 1px solid rgba(220, 53, 69, 0.3);
    }

/* Expanded Section */
.candidate-expanded[b-60jqqt4xo8] {
    padding: 1rem;
    border-top: 2px solid rgba(74, 144, 226, 0.1);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.03) 0%, rgba(91, 127, 219, 0.03) 100%);
    animation: slideDown-b-60jqqt4xo8 0.3s ease;
}

@keyframes slideDown-b-60jqqt4xo8 {
    from {
        opacity: 0;
        max-height: 0;
    }

    to {
        opacity: 1;
        max-height: 500px;
    }
}

.status-options[b-60jqqt4xo8] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.status-btn[b-60jqqt4xo8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    padding: 0.75rem 0.5rem;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
}

    .status-btn:active[b-60jqqt4xo8] {
        transform: scale(0.95);
    }

    .status-btn.active.present[b-60jqqt4xo8] {
        background: linear-gradient(135deg, rgba(40, 167, 69, 0.15) 0%, rgba(34, 139, 34, 0.15) 100%);
        border-color: #28a745;
        color: #28a745;
    }

    .status-btn.active.delayed[b-60jqqt4xo8] {
        background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.15) 100%);
        border-color: #ff9800;
        color: #ff9800;
    }

    .status-btn.active.absent[b-60jqqt4xo8] {
        background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(200, 35, 51, 0.15) 100%);
        border-color: #dc3545;
        color: #dc3545;
    }

.status-icon[b-60jqqt4xo8] {
    font-size: 1.5rem;
}

.comment-section[b-60jqqt4xo8] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .comment-section label[b-60jqqt4xo8] {
        font-size: 0.813rem;
        font-weight: 600;
        color: #333;
    }

    .comment-section textarea[b-60jqqt4xo8] {
        width: 100%;
        box-sizing: border-box;
        padding: 0.75rem;
        border: 2px solid rgba(74, 144, 226, 0.2);
        border-radius: 10px;
        font-size: 0.875rem;
        font-family: inherit;
        resize: vertical;
        transition: border-color 0.2s ease;
    }

        .comment-section textarea:focus[b-60jqqt4xo8] {
            outline: none;
            border-color: #4A90E2;
        }

/* Summary Card */
.summary-card[b-60jqqt4xo8] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp-b-60jqqt4xo8 0.5s ease 0.3s both;
}

    .summary-card h3[b-60jqqt4xo8] {
        font-size: 1.063rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 1rem 0;
    }

.summary-grid[b-60jqqt4xo8] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.summary-item[b-60jqqt4xo8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-radius: 12px;
    gap: 0.5rem;
}

    .summary-item.present[b-60jqqt4xo8] {
        background: linear-gradient(135deg, rgba(40, 167, 69, 0.15) 0%, rgba(34, 139, 34, 0.15) 100%);
    }

    .summary-item.delayed[b-60jqqt4xo8] {
        background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.15) 100%);
    }

    .summary-item.absent[b-60jqqt4xo8] {
        background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(200, 35, 51, 0.15) 100%);
    }

.summary-count[b-60jqqt4xo8] {
    font-size: 2rem;
    font-weight: 700;
}

.summary-item.present .summary-count[b-60jqqt4xo8] {
    color: #28a745;
}

.summary-item.delayed .summary-count[b-60jqqt4xo8] {
    color: #ff9800;
}

.summary-item.absent .summary-count[b-60jqqt4xo8] {
    color: #dc3545;
}

.summary-label[b-60jqqt4xo8] {
    font-size: 0.813rem;
    font-weight: 600;
    color: #666;
}

/* Save Button */
.btn-save-presence[b-60jqqt4xo8] {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.5);
    animation: fadeInUp-b-60jqqt4xo8 0.5s ease 0.4s both;
    position: relative;
}

    .btn-save-presence[b-60jqqt4xo8]::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 14px;
        padding: 2px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .btn-save-presence:not(:disabled):active[b-60jqqt4xo8] {
        transform: scale(0.98);
        box-shadow: 0 4px 16px rgba(74, 144, 226, 0.6);
    }

    .btn-save-presence:disabled[b-60jqqt4xo8] {
        opacity: 0.7;
        cursor: not-allowed;
    }

.btn-icon[b-60jqqt4xo8] {
    font-size: 1.25rem;
}

.btn-spinner[b-60jqqt4xo8] {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-60jqqt4xo8 0.6s linear infinite;
}

/* Responsive Design */
@media (max-width: 640px) {
    .presence-container[b-60jqqt4xo8] {
        padding: 1rem 0.75rem;
        padding-top: calc(env(safe-area-inset-top) + 1rem);
        padding-bottom: calc(env(safe-area-inset-bottom) + 110px);
    }

    .page-header h1[b-60jqqt4xo8] {
        font-size: 1.25rem;
    }

    .info-banner[b-60jqqt4xo8] {
        padding: 0.75rem;
    }

    .info-banner-text[b-60jqqt4xo8] {
        font-size: 0.813rem;
    }

    .status-options[b-60jqqt4xo8] {
        gap: 0.375rem;
    }

    .status-btn[b-60jqqt4xo8] {
        padding: 0.625rem 0.375rem;
        font-size: 0.688rem;
    }

    .status-icon[b-60jqqt4xo8] {
        font-size: 1.25rem;
    }

    .summary-grid[b-60jqqt4xo8] {
        gap: 0.5rem;
    }

    .summary-item[b-60jqqt4xo8] {
        padding: 0.75rem 0.5rem;
    }

    .summary-count[b-60jqqt4xo8] {
        font-size: 1.75rem;
    }
}

@media (min-width: 768px) {
    .presence-container[b-60jqqt4xo8] {
        padding: 2rem 1.5rem;
    }

    .content-wrapper[b-60jqqt4xo8] {
        max-width: 700px;
        margin: 0 auto;
    }

    .page-header h1[b-60jqqt4xo8] {
        font-size: 2rem;
    }

    .status-options[b-60jqqt4xo8] {
        gap: 0.75rem;
    }
}
/* /Pages/fk/DashboardPage.razor.rz.scp.css */
.dashboard-container[b-laf71t2uk3] {
    max-width: 100vw;
    margin: 0;
    padding: 1rem 0.75rem;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 120px;
}

    .dashboard-container[b-laf71t2uk3]::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 250px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
        pointer-events: none;
        z-index: 0;
    }

/* Page Header */
.page-header[b-laf71t2uk3] {
    margin-top: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInDown-b-laf71t2uk3 0.6s ease;
    flex-shrink: 0;
}

    .page-header h1[b-laf71t2uk3] {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        margin: 0 0 0.375rem 0;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .page-header p[b-laf71t2uk3] {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
        font-weight: 500;
    }

@keyframes fadeInDown-b-laf71t2uk3 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollable Content Area */
.content-wrapper[b-laf71t2uk3] {
    flex: 1;
    overflow: visible;
    padding-bottom: 1rem;
}

/* Punktepass Card */
.punktepass-card[b-laf71t2uk3] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 1.125rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
    flex-shrink: 0;
}

    .punktepass-card[b-laf71t2uk3]::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

    .punktepass-card h2[b-laf71t2uk3] {
        font-size: 1.063rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 1rem 0;
        position: relative;
        display: inline-block;
    }

        .punktepass-card h2[b-laf71t2uk3]::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 60%;
            height: 3px;
            background: linear-gradient(90deg, #4A90E2 0%, #5B7FDB 100%);
            border-radius: 2px;
        }

.punktepass-grid[b-laf71t2uk3] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    position: relative;
}

.punkt-item[b-laf71t2uk3] {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.12) 0%, rgba(91, 127, 219, 0.12) 100%);
    border-radius: 16px;
    padding: 0.875rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
}

    .punkt-item[b-laf71t2uk3]::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 16px;
        padding: 2px;
        background: linear-gradient(135deg, rgba(74, 144, 226, 0.4), rgba(91, 127, 219, 0.4));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .punkt-item:active[b-laf71t2uk3] {
        transform: scale(0.98);
        background: linear-gradient(135deg, rgba(74, 144, 226, 0.18) 0%, rgba(91, 127, 219, 0.18) 100%);
    }

    .punkt-item:nth-child(1)[b-laf71t2uk3] {
        animation: fadeInUp-b-laf71t2uk3 0.5s ease 0.1s both;
    }

    .punkt-item:nth-child(2)[b-laf71t2uk3] {
        animation: fadeInUp-b-laf71t2uk3 0.5s ease 0.2s both;
    }

    .punkt-item:nth-child(3)[b-laf71t2uk3] {
        animation: fadeInUp-b-laf71t2uk3 0.5s ease 0.3s both;
    }

    .punkt-item:nth-child(4)[b-laf71t2uk3] {
        animation: fadeInUp-b-laf71t2uk3 0.5s ease 0.4s both;
    }

@keyframes fadeInUp-b-laf71t2uk3 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.punkt-label[b-laf71t2uk3] {
    font-size: 0.813rem;
    color: #555;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.punkt-value[b-laf71t2uk3] {
    font-size: 1.375rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* Event Card */
.event-card[b-laf71t2uk3] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 1.125rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
    animation: fadeInUp-b-laf71t2uk3 0.5s ease 0.5s both;
    flex-shrink: 0;
}

    .event-card[b-laf71t2uk3]::before {
        content: '';
        position: absolute;
        bottom: -50%;
        left: -20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(91, 127, 219, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

    .event-card h2[b-laf71t2uk3] {
        font-size: 1.063rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 1rem 0;
        position: relative;
        display: inline-block;
    }

        .event-card h2[b-laf71t2uk3]::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 60%;
            height: 3px;
            background: linear-gradient(90deg, #5B7FDB 0%, #6B5FCF 100%);
            border-radius: 2px;
        }

.event-content[b-laf71t2uk3] {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(91, 127, 219, 0.08) 100%);
    border-radius: 16px;
    padding: 1.125rem;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

    .event-content[b-laf71t2uk3]::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 16px;
        padding: 2px;
        background: linear-gradient(135deg, rgba(74, 144, 226, 0.35), rgba(91, 127, 219, 0.35));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

.event-header[b-laf71t2uk3] {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1rem;
    padding-bottom: 0.875rem;
    border-bottom: 2px solid rgba(74, 144, 226, 0.15);
}

    .event-header h3[b-laf71t2uk3] {
        font-size: 1rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0;
        line-height: 1.4;
    }

.event-date[b-laf71t2uk3] {
    font-size: 0.813rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 100%);
    padding: 0.375rem 0.75rem;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    letter-spacing: 0.3px;
    align-self: flex-start;
}

.event-details[b-laf71t2uk3] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.event-info[b-laf71t2uk3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.375rem 0;
}

.info-label[b-laf71t2uk3] {
    font-size: 0.813rem;
    color: #666;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.info-value[b-laf71t2uk3] {
    font-size: 0.813rem;
    color: #1a1a1a;
    font-weight: 700;
    text-align: right;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Event Button */
.btn-event-details[b-laf71t2uk3] {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.35);
    position: relative;
    overflow: hidden;
}

    .btn-event-details[b-laf71t2uk3]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .btn-event-details:active[b-laf71t2uk3] {
        transform: scale(0.98);
        box-shadow: 0 4px 12px rgba(74, 144, 226, 0.35);
    }

.no-event[b-laf71t2uk3] {
    color: #666;
    text-align: center;
    padding: 2rem;
    font-style: italic;
}

/* Header Content Layout */
.header-content[b-laf71t2uk3] {
    position: relative;
}

/* Logout Button - dezent positioniert */
.btn-logout[b-laf71t2uk3] {
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 10px;
    background-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

    .btn-logout:hover[b-laf71t2uk3] {
        background-color: rgba(255, 255, 255, 0.3);
        color: white;
        border-color: rgba(255, 255, 255, 0.5);
    }

    .btn-logout:active[b-laf71t2uk3] {
        transform: scale(0.95);
    }

/* Responsive Design */
@media (max-width: 640px) {
    .dashboard-container[b-laf71t2uk3] {
        padding: 1rem 0.75rem;
        padding-top: calc(env(safe-area-inset-top) + 1rem);
        padding-bottom: calc(env(safe-area-inset-bottom) + 110px);
    }

    .page-header[b-laf71t2uk3] {
        margin-top: 2rem;
    }

        .page-header h1[b-laf71t2uk3] {
            font-size: 1.5rem;
        }

        .page-header p[b-laf71t2uk3] {
            font-size: 0.875rem;
        }

    .punktepass-card[b-laf71t2uk3],
    .event-card[b-laf71t2uk3] {
        padding: 1.125rem;
        border-radius: 18px;
    }

    .punkt-item[b-laf71t2uk3] {
        padding: 0.875rem 0.75rem;
    }

    .punkt-value[b-laf71t2uk3] {
        font-size: 1.375rem;
    }

    .event-header[b-laf71t2uk3] {
        flex-direction: column;
        gap: 0.625rem;
    }

    .event-date[b-laf71t2uk3] {
        margin-left: 0;
        align-self: flex-start;
    }

    .btn-event-details[b-laf71t2uk3] {
        padding: 12px 20px;
        font-size: 15px;
    }
}
/* /Pages/fk/EventDetailPage.razor.rz.scp.css */
.event-detail-container[b-9qwrwrgzqf] {
    max-width: 100vw;
    margin: 0;
    padding: 1rem 0.75rem;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 120px;
}

    .event-detail-container[b-9qwrwrgzqf]::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 250px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
        pointer-events: none;
        z-index: 0;
    }

/* Header */
.detail-header[b-9qwrwrgzqf] {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInDown-b-9qwrwrgzqf 0.5s ease;
}

    .detail-header h1[b-9qwrwrgzqf] {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        margin: 0;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        flex: 1;
        line-height: 1.3;
    }

.btn-back-small[b-9qwrwrgzqf] {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.5rem;
    flex-shrink: 0;
}

    .btn-back-small:hover[b-9qwrwrgzqf] {
        background: rgba(255, 255, 255, 0.35);
        transform: translateX(-2px);
    }

    .btn-back-small:active[b-9qwrwrgzqf] {
        transform: scale(0.95);
    }

@keyframes fadeInDown-b-9qwrwrgzqf {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading & Error States */
.loading-container[b-9qwrwrgzqf],
.error-container[b-9qwrwrgzqf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    min-height: 60vh;
    position: relative;
    z-index: 1;
}

    .loading-container p[b-9qwrwrgzqf],
    .error-container p[b-9qwrwrgzqf] {
        color: white;
        font-size: 0.95rem;
        font-weight: 500;
        margin-top: 1rem;
    }

.spinner[b-9qwrwrgzqf] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-9qwrwrgzqf 0.8s linear infinite;
}

@keyframes spin-b-9qwrwrgzqf {
    to {
        transform: rotate(360deg);
    }
}

.error-container[b-9qwrwrgzqf] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 3rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.error-icon[b-9qwrwrgzqf] {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.error-container h2[b-9qwrwrgzqf] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.error-container p[b-9qwrwrgzqf] {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0 0 1.5rem 0;
}

.btn-back[b-9qwrwrgzqf] {
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

    .btn-back:hover[b-9qwrwrgzqf] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
    }

    .btn-back:active[b-9qwrwrgzqf] {
        transform: scale(0.98);
    }

/* Event Info Card */
.event-info-card[b-9qwrwrgzqf] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    animation: fadeInUp-b-9qwrwrgzqf 0.5s ease 0.1s both;
}

@keyframes fadeInUp-b-9qwrwrgzqf {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-section[b-9qwrwrgzqf] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-row[b-9qwrwrgzqf] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(91, 127, 219, 0.05) 100%);
    border-radius: 12px;
    transition: all 0.2s ease;
}

    .info-row:hover[b-9qwrwrgzqf] {
        background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(91, 127, 219, 0.08) 100%);
    }

.info-icon[b-9qwrwrgzqf] {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.info-content[b-9qwrwrgzqf] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.info-label[b-9qwrwrgzqf] {
    font-size: 0.813rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value[b-9qwrwrgzqf] {
    font-size: 0.95rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.4;
}

.participant-percentage[b-9qwrwrgzqf] {
    color: #4A90E2;
    font-size: 0.875rem;
    margin-left: 0.25rem;
}

.points-highlight[b-9qwrwrgzqf] {
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.125rem;
    font-weight: 700;
}

/* Description Card */
.description-card[b-9qwrwrgzqf] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    animation: fadeInUp-b-9qwrwrgzqf 0.5s ease 0.2s both;
}

    .description-card h2[b-9qwrwrgzqf] {
        font-size: 1.125rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 1rem 0;
        position: relative;
        display: inline-block;
    }

        .description-card h2[b-9qwrwrgzqf]::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 60%;
            height: 3px;
            background: linear-gradient(90deg, #4A90E2 0%, #5B7FDB 100%);
            border-radius: 2px;
        }

    .description-card p[b-9qwrwrgzqf] {
        font-size: 0.95rem;
        color: #495057;
        line-height: 1.6;
        margin: 0;
        white-space: pre-wrap;
    }

/* Registration Section */
.registration-section[b-9qwrwrgzqf] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    animation: fadeInUp-b-9qwrwrgzqf 0.5s ease 0.3s both;
}

.registration-status[b-9qwrwrgzqf] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.status-icon[b-9qwrwrgzqf] {
    font-size: 1.5rem;
}

.registration-status.registered[b-9qwrwrgzqf] {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15) 0%, rgba(34, 139, 34, 0.15) 100%);
    color: #28a745;
    border: 2px solid rgba(40, 167, 69, 0.3);
}

.registration-status.available[b-9qwrwrgzqf] {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(91, 127, 219, 0.15) 100%);
    color: #4A90E2;
    border: 2px solid rgba(74, 144, 226, 0.3);
}

.registration-status.full[b-9qwrwrgzqf] {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(200, 35, 51, 0.15) 100%);
    color: #dc3545;
    border: 2px solid rgba(220, 53, 69, 0.3);
}

/* Buttons */
.btn-register[b-9qwrwrgzqf],
.btn-unregister[b-9qwrwrgzqf] {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-register[b-9qwrwrgzqf] {
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

    .btn-register:not(:disabled):hover[b-9qwrwrgzqf] {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(74, 144, 226, 0.5);
    }

    .btn-register:not(:disabled):active[b-9qwrwrgzqf] {
        transform: scale(0.98);
    }

    .btn-register:disabled[b-9qwrwrgzqf] {
        background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
        cursor: not-allowed;
        opacity: 0.7;
        box-shadow: none;
    }

.btn-unregister[b-9qwrwrgzqf] {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(200, 35, 51, 0.1) 100%);
    color: #dc3545;
    border: 2px solid #dc3545;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
}

    .btn-unregister:not(:disabled):hover[b-9qwrwrgzqf] {
        background: linear-gradient(135deg, rgba(220, 53, 69, 0.2) 0%, rgba(200, 35, 51, 0.2) 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(220, 53, 69, 0.3);
    }

    .btn-unregister:not(:disabled):active[b-9qwrwrgzqf] {
        transform: scale(0.98);
    }

    .btn-unregister:disabled[b-9qwrwrgzqf] {
        opacity: 0.5;
        cursor: not-allowed;
    }

.btn-spinner[b-9qwrwrgzqf] {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-9qwrwrgzqf 0.6s linear infinite;
}

/* Responsive Design */
@media (max-width: 640px) {
    .event-detail-container[b-9qwrwrgzqf] {
        padding: 1rem 0.75rem;
        padding-top: calc(env(safe-area-inset-top) + 1rem);
        padding-bottom: calc(env(safe-area-inset-bottom) + 110px);
    }

    .detail-header h1[b-9qwrwrgzqf] {
        font-size: 1.25rem;
    }

    .event-info-card[b-9qwrwrgzqf],
    .description-card[b-9qwrwrgzqf],
    .registration-section[b-9qwrwrgzqf] {
        padding: 1.25rem;
    }

    .info-row[b-9qwrwrgzqf] {
        padding: 0.625rem;
    }

    .info-icon[b-9qwrwrgzqf] {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .event-detail-container[b-9qwrwrgzqf] {
        padding: 2rem 1.5rem;
    }

    .detail-header[b-9qwrwrgzqf],
    .event-info-card[b-9qwrwrgzqf],
    .description-card[b-9qwrwrgzqf],
    .registration-section[b-9qwrwrgzqf] {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .detail-header h1[b-9qwrwrgzqf] {
        font-size: 2rem;
    }
}
/* /Pages/fk/EventsPage.razor.rz.scp.css */
body[b-59k4id6py3] {
}

.events-container[b-59k4id6py3] {
    max-width: 100vw;
    margin: 0;
    padding: 1rem 0.75rem;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 120px;
}

    .events-container[b-59k4id6py3]::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 250px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
        pointer-events: none;
        z-index: 0;
    }

/* Page Header */
.page-header[b-59k4id6py3] {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInDown-b-59k4id6py3 0.6s ease;
}

    .page-header h1[b-59k4id6py3] {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        margin: 0 0 0.375rem 0;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .page-header p[b-59k4id6py3] {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.9);
        margin: 0 0 1rem 0;
        font-weight: 500;
    }

.btn-my-events[b-59k4id6py3] {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

    .btn-my-events:active[b-59k4id6py3] {
        transform: scale(0.96);
        background: rgba(255, 255, 255, 0.35);
    }

.btn-icon[b-59k4id6py3] {
    font-size: 1rem;
    display: flex;
    align-items: center;
}

@keyframes fadeInDown-b-59k4id6py3 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Wrapper */
.content-wrapper[b-59k4id6py3] {
    position: relative;
    z-index: 1;
}

/* Loading State */
.loading-container[b-59k4id6py3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    gap: 1rem;
}

    .loading-container p[b-59k4id6py3] {
        color: white;
        font-size: 0.95rem;
        font-weight: 500;
    }

.spinner[b-59k4id6py3] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-59k4id6py3 0.8s linear infinite;
}

@keyframes spin-b-59k4id6py3 {
    to {
        transform: rotate(360deg);
    }
}

/* Empty State */
.empty-state[b-59k4id6py3] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 3rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp-b-59k4id6py3 0.5s ease;
}

.empty-icon[b-59k4id6py3] {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.empty-state h3[b-59k4id6py3] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.empty-state p[b-59k4id6py3] {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

/* Category Section */
.category-section[b-59k4id6py3] {
    margin-bottom: 1rem;
    animation: fadeInUp-b-59k4id6py3 0.5s ease;
    transition: all 0.3s ease;
}

    .category-section:last-child[b-59k4id6py3] {
        margin-bottom: 1rem;
    }

    .category-section.collapsed[b-59k4id6py3] {
        margin-bottom: 0.75rem;
    }

@keyframes fadeInUp-b-59k4id6py3 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category Header */
.category-header[b-59k4id6py3] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 0.875rem 1.125rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

    .category-header:active[b-59k4id6py3] {
        transform: scale(0.98);
    }

    .category-header[b-59k4id6py3]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
        border-radius: 14px 0 0 14px;
    }

.category-header-content[b-59k4id6py3] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

    .category-header-content h2[b-59k4id6py3] {
        font-size: 1.125rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0;
        background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.event-count[b-59k4id6py3] {
    background: rgba(74, 144, 226, 0.12);
    color: #4A90E2;
    padding: 0.25rem 0.625rem;
    border-radius: 8px;
    font-size: 0.813rem;
    font-weight: 600;
    min-width: 28px;
    text-align: center;
}

.toggle-icon[b-59k4id6py3] {
    font-size: 0.875rem;
    color: #4A90E2;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-left: 0.5rem;
}

.category-section.expanded .toggle-icon[b-59k4id6py3] {
    transform: rotate(0deg);
}

.category-section.collapsed .toggle-icon[b-59k4id6py3] {
    transform: rotate(-90deg);
}

.category-section.collapsed .category-header[b-59k4id6py3] {
    margin-bottom: 0;
}

/* Events List */
.events-list[b-59k4id6py3] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: slideDown-b-59k4id6py3 0.3s ease;
}

@keyframes slideDown-b-59k4id6py3 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* EventComponent Integration */
.events-list::deep .event-card[b-59k4id6py3] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    animation: fadeInUp-b-59k4id6py3 0.4s ease;
}

/* Responsive Design */
@media (max-width: 640px) {
    .events-container[b-59k4id6py3] {
        padding: 1rem 0.75rem;
        padding-top: calc(env(safe-area-inset-top) + 1rem);
        padding-bottom: calc(env(safe-area-inset-bottom) + 110px);
    }

    .page-header[b-59k4id6py3] {
        margin-top: 2rem;
    }

        .page-header h1[b-59k4id6py3] {
            font-size: 1.5rem;
        }

        .page-header p[b-59k4id6py3] {
            font-size: 0.875rem;
        }

    .btn-my-events[b-59k4id6py3] {
        font-size: 0.813rem;
        padding: 0.5rem 1rem;
    }

    .category-header[b-59k4id6py3] {
        padding: 0.75rem 1rem;
    }

    .category-header-content h2[b-59k4id6py3] {
        font-size: 1rem;
    }

    .event-count[b-59k4id6py3] {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
        min-width: 24px;
    }

    .toggle-icon[b-59k4id6py3] {
        font-size: 0.75rem;
        width: 20px;
        height: 20px;
    }

    .empty-state[b-59k4id6py3] {
        padding: 2rem 1rem;
    }

    .empty-icon[b-59k4id6py3] {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .events-container[b-59k4id6py3] {
        padding: 2rem 1.5rem;
    }

    .content-wrapper[b-59k4id6py3] {
        max-width: 900px;
        margin: 0 auto;
    }

    .category-header[b-59k4id6py3] {
        padding: 1rem 1.5rem;
    }

    .category-header-content h2[b-59k4id6py3] {
        font-size: 1.25rem;
    }

    .event-count[b-59k4id6py3] {
        font-size: 0.875rem;
        padding: 0.3rem 0.75rem;
        min-width: 32px;
    }
}

@media (min-width: 1024px) {
    .content-wrapper[b-59k4id6py3] {
        max-width: 1100px;
    }

    .events-list[b-59k4id6py3] {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
/* /Pages/fk/FirmpassPage.razor.rz.scp.css */
/* Generated by GitHub Copilot: FirmpassPage styles with glassmorphic design */

.firmpass-container[b-xjy13rvkzp] {
    max-width: 100vw;
    margin: 0;
    padding: 1rem 0.75rem;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 120px;
}

    .firmpass-container[b-xjy13rvkzp]::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 250px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
        pointer-events: none;
        z-index: 0;
    }

/* Page Header */
.page-header[b-xjy13rvkzp] {
    margin-top: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInDown-b-xjy13rvkzp 0.6s ease;
}

    .page-header h1[b-xjy13rvkzp] {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        margin: 0 0 0.375rem 0;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .page-header p[b-xjy13rvkzp] {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
        font-weight: 500;
    }

@keyframes fadeInDown-b-xjy13rvkzp {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Points Overview Card */
.points-overview-card[b-xjy13rvkzp] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 1.125rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
    animation: fadeInUp-b-xjy13rvkzp 0.5s ease 0.1s both;
}

    .points-overview-card[b-xjy13rvkzp]::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

    .points-overview-card h2[b-xjy13rvkzp] {
        font-size: 1.063rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 1rem 0;
        position: relative;
        display: inline-block;
    }

        .points-overview-card h2[b-xjy13rvkzp]::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 60%;
            height: 3px;
            background: linear-gradient(90deg, #4A90E2 0%, #5B7FDB 100%);
            border-radius: 2px;
        }

.points-grid[b-xjy13rvkzp] {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.category-item[b-xjy13rvkzp] {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(91, 127, 219, 0.08) 100%);
    border-radius: 14px;
    padding: 0.875rem;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
}

    .category-item[b-xjy13rvkzp]::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 14px;
        padding: 2px;
        background: linear-gradient(135deg, rgba(74, 144, 226, 0.3), rgba(91, 127, 219, 0.3));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

.category-header[b-xjy13rvkzp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.category-name[b-xjy13rvkzp] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.3px;
}

.category-points[b-xjy13rvkzp] {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Progress Bar */
.progress-bar-container[b-xjy13rvkzp] {
    width: 100%;
    height: 8px;
    background: rgba(74, 144, 226, 0.15);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar[b-xjy13rvkzp] {
    height: 100%;
    background: linear-gradient(90deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    border-radius: 10px;
    transition: width 0.6s ease;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.4);
}

/* Points List Card */
.points-list-card[b-xjy13rvkzp] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 1.125rem;
    margin-bottom: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
    animation: fadeInUp-b-xjy13rvkzp 0.5s ease 0.2s both;
}

    .points-list-card[b-xjy13rvkzp]::before {
        content: '';
        position: absolute;
        bottom: -50%;
        left: -20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(91, 127, 219, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

    .points-list-card h2[b-xjy13rvkzp] {
        font-size: 1.063rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 1rem 0;
        position: relative;
        display: inline-block;
    }

        .points-list-card h2[b-xjy13rvkzp]::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 60%;
            height: 3px;
            background: linear-gradient(90deg, #5B7FDB 0%, #6B5FCF 100%);
            border-radius: 2px;
        }

.points-list[b-xjy13rvkzp] {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.point-entry[b-xjy13rvkzp] {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.06) 0%, rgba(91, 127, 219, 0.06) 100%);
    border-radius: 14px;
    padding: 1rem;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
}

    .point-entry[b-xjy13rvkzp]::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 14px;
        padding: 2px;
        background: linear-gradient(135deg, rgba(74, 144, 226, 0.25), rgba(91, 127, 219, 0.25));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .point-entry:active[b-xjy13rvkzp] {
        transform: scale(0.99);
        background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(91, 127, 219, 0.1) 100%);
    }

.point-header[b-xjy13rvkzp] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    gap: 0.75rem;
}

.point-title-section[b-xjy13rvkzp] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

    .point-title-section h3[b-xjy13rvkzp] {
        font-size: 0.938rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0;
        line-height: 1.3;
    }

.point-category[b-xjy13rvkzp] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5B7FDB;
    background: rgba(91, 127, 219, 0.12);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    display: inline-block;
    letter-spacing: 0.3px;
}

.point-value-badge[b-xjy13rvkzp] {
    flex-shrink: 0;
}

.point-value[b-xjy13rvkzp] {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.point-description[b-xjy13rvkzp] {
    font-size: 0.813rem;
    color: #555;
    margin: 0.5rem 0;
    line-height: 1.5;
}

.point-date[b-xjy13rvkzp] {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(74, 144, 226, 0.15);
}

    .point-date span[b-xjy13rvkzp] {
        font-size: 0.75rem;
        color: #777;
        font-weight: 500;
    }

.no-points[b-xjy13rvkzp] {
    color: #666;
    text-align: center;
    padding: 2rem;
    font-style: italic;
    font-size: 0.938rem;
}

@keyframes fadeInUp-b-xjy13rvkzp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 640px) {
    .firmpass-container[b-xjy13rvkzp] {
        padding: 1rem 0.75rem;
        padding-top: calc(env(safe-area-inset-top) + 1rem);
        padding-bottom: calc(env(safe-area-inset-bottom) + 110px);
    }

    .page-header[b-xjy13rvkzp] {
        margin-top: 2rem;
    }

        .page-header h1[b-xjy13rvkzp] {
            font-size: 1.5rem;
        }

        .page-header p[b-xjy13rvkzp] {
            font-size: 0.875rem;
        }

    .points-overview-card[b-xjy13rvkzp],
    .points-list-card[b-xjy13rvkzp] {
        padding: 1.125rem;
        border-radius: 18px;
    }
}
/* /Pages/fk/GroupPage.razor.rz.scp.css */
.group-page-container[b-fll2f6ht72] {
    max-width: 100vw;
    margin: 0;
    padding: 20px 20px;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 120px;
}

    .group-page-container[b-fll2f6ht72]::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 250px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
        pointer-events: none;
        z-index: 0;
    }

/* Page Header */
.page-header[b-fll2f6ht72] {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    animation: fadeInDown-b-fll2f6ht72 0.6s ease;
}

    .page-header h1[b-fll2f6ht72] {
        font-size: 32px;
        font-weight: 700;
        color: white;
        margin: 0 0 8px 0;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .page-header p[b-fll2f6ht72] {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
        font-weight: 500;
    }

@keyframes fadeInDown-b-fll2f6ht72 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading */
.loading-container[b-fll2f6ht72] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.spinner[b-fll2f6ht72] {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-fll2f6ht72 1s linear infinite;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes spin-b-fll2f6ht72 {
    to {
        transform: rotate(360deg);
    }
}

.loading-container p[b-fll2f6ht72] {
    margin-top: 16px;
    color: white;
    font-size: 15px;
    font-weight: 500;
}

/* Empty State */
.empty-state[b-fll2f6ht72] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;
    padding: 60px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(74, 144, 226, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    animation: fadeInUp-b-fll2f6ht72 0.6s ease;
}

    .empty-state[b-fll2f6ht72]::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

@keyframes fadeInUp-b-fll2f6ht72 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.empty-icon[b-fll2f6ht72] {
    font-size: 64px;
    display: block;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 8px rgba(74, 144, 226, 0.3));
}

.empty-state h3[b-fll2f6ht72] {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.empty-state p[b-fll2f6ht72] {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.empty-state-small[b-fll2f6ht72] {
    padding: 30px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

    .empty-state-small p[b-fll2f6ht72] {
        font-size: 15px;
        color: #666;
        margin: 0;
    }

/* Cards */
.info-card[b-fll2f6ht72],
.contact-card[b-fll2f6ht72],
.lessons-card[b-fll2f6ht72] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;
    padding: 0;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(74, 144, 226, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 1;
    animation: fadeInUp-b-fll2f6ht72 0.6s ease;
}

    .info-card[b-fll2f6ht72]::before,
    .contact-card[b-fll2f6ht72]::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(74, 144, 226, 0.06) 0%, transparent 70%);
        pointer-events: none;
    }

    .lessons-card[b-fll2f6ht72]::before {
        content: '';
        position: absolute;
        bottom: -50%;
        left: -20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(91, 127, 219, 0.06) 0%, transparent 70%);
        pointer-events: none;
    }

.card-header[b-fll2f6ht72] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

    .card-header[b-fll2f6ht72]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
        animation: shimmer-b-fll2f6ht72 4s infinite;
    }

@keyframes shimmer-b-fll2f6ht72 {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.card-icon[b-fll2f6ht72] {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    position: relative;
    z-index: 1;
}

.card-header h2[b-fll2f6ht72] {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.card-content[b-fll2f6ht72] {
    padding: 24px;
    position: relative;
}

/* Info Section */
.info-section[b-fll2f6ht72] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-label[b-fll2f6ht72] {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value[b-fll2f6ht72] {
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
}

/* Contact Info */
.contact-info[b-fll2f6ht72] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item[b-fll2f6ht72] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label[b-fll2f6ht72] {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value[b-fll2f6ht72] {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 500;
}

.contact-link[b-fll2f6ht72] {
    font-size: 16px;
    color: #4A90E2;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

    .contact-link:hover[b-fll2f6ht72] {
        color: #5B7FDB;
        transform: translateX(2px);
    }

/* Lessons List */
.lessons-list[b-fll2f6ht72] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    position: relative;
}

.lesson-item[b-fll2f6ht72] {
    background: white;
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    background-clip: padding-box;
}

    .lesson-item[b-fll2f6ht72]::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 16px;
        padding: 2px;
        background: linear-gradient(135deg, rgba(74, 144, 226, 0.3), rgba(91, 127, 219, 0.3));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .lesson-item:active[b-fll2f6ht72] {
        transform: scale(0.98);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.lesson-main[b-fll2f6ht72] {
    padding: 20px;
    position: relative;
}

.lesson-header[b-fll2f6ht72] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.lesson-title[b-fll2f6ht72] {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
}

.lesson-date[b-fll2f6ht72] {
    font-size: 14px;
    font-weight: 700;
    color: white;
    padding: 4px 12px;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 100%);
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.25);
}

.lesson-description[b-fll2f6ht72] {
    font-size: 14px;
    color: #666;
    margin: 8px 0;
    line-height: 1.5;
}

.lesson-footer[b-fll2f6ht72] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid rgba(74, 144, 226, 0.1);
}

.lesson-details[b-fll2f6ht72] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.lesson-time[b-fll2f6ht72],
.lesson-location[b-fll2f6ht72] {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.btn-details[b-fll2f6ht72] {
    padding: 10px 20px;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.3);
    position: relative;
    overflow: hidden;
}

    .btn-details[b-fll2f6ht72]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .btn-details:active[b-fll2f6ht72] {
        transform: scale(0.98);
        box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    }

/* Dialog */
.dialog-backdrop[b-fll2f6ht72] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn-b-fll2f6ht72 0.3s ease;
}

@keyframes fadeIn-b-fll2f6ht72 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.dialog[b-fll2f6ht72] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;
    padding: 24px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp-b-fll2f6ht72 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

    .dialog[b-fll2f6ht72]::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

@keyframes slideUp-b-fll2f6ht72 {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dialog h3[b-fll2f6ht72] {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    position: relative;
}

.dialog-content[b-fll2f6ht72] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.detail-section[b-fll2f6ht72] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-label[b-fll2f6ht72] {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value[b-fll2f6ht72] {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 500;
}

.detail-description[b-fll2f6ht72] {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.dialog-actions[b-fll2f6ht72] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px solid rgba(74, 144, 226, 0.1);
}

.btn-close[b-fll2f6ht72] {
    padding: 12px 28px;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.35);
    position: relative;
    overflow: hidden;
}

    .btn-close[b-fll2f6ht72]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .btn-close:active[b-fll2f6ht72] {
        transform: scale(0.98);
        box-shadow: 0 4px 12px rgba(74, 144, 226, 0.35);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .group-page-container[b-fll2f6ht72] {
        padding: 16px 16px;
        padding-top: calc(env(safe-area-inset-top) + 16px);
        padding-bottom: calc(env(safe-area-inset-bottom) + 110px);
    }

    .page-header h1[b-fll2f6ht72] {
        font-size: 28px;
    }

    .card-header h2[b-fll2f6ht72] {
        font-size: 18px;
    }

    .lesson-header[b-fll2f6ht72] {
        flex-direction: column;
        align-items: flex-start;
    }

    .lesson-date[b-fll2f6ht72] {
        align-self: flex-start;
    }

    .lesson-footer[b-fll2f6ht72] {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-details[b-fll2f6ht72] {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .page-header h1[b-fll2f6ht72] {
        font-size: 24px;
    }

    .card-icon[b-fll2f6ht72] {
        font-size: 24px;
    }

    .card-header[b-fll2f6ht72] {
        padding: 16px 20px;
    }

    .card-content[b-fll2f6ht72] {
        padding: 20px;
    }

    .lessons-list[b-fll2f6ht72] {
        padding: 16px;
    }

    .lesson-main[b-fll2f6ht72] {
        padding: 16px;
    }

    .dialog[b-fll2f6ht72] {
        padding: 20px;
    }
}
/* /Pages/fk/MassesPage.razor.rz.scp.css */
.masses-container[b-cfwr47bkku] {
    max-width: 100vw;
    margin: 0;
    padding: 1rem 0.75rem;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 120px;
}

    .masses-container[b-cfwr47bkku]::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 250px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
        pointer-events: none;
        z-index: 0;
    }

/* Page Header */
.page-header[b-cfwr47bkku] {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    animation: fadeInDown-b-cfwr47bkku 0.6s ease;
    text-align: center;
}

    .page-header h1[b-cfwr47bkku] {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        margin: 0 0 0.375rem 0;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .page-header p[b-cfwr47bkku] {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.9);
        margin: 0 0 1.25rem 0;
        font-weight: 500;
    }

@keyframes fadeInDown-b-cfwr47bkku {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Report Mass Button */
.btn-report-mass[b-cfwr47bkku] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.5),
                0 4px 12px rgba(0, 0, 0, 0.15);
    width: 100%;
    position: relative;
    overflow: hidden;
}

    .btn-report-mass[b-cfwr47bkku]::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 14px;
        padding: 2px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .btn-report-mass:hover[b-cfwr47bkku] {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(74, 144, 226, 0.6),
                    0 6px 16px rgba(0, 0, 0, 0.2);
    }

    .btn-report-mass:active[b-cfwr47bkku] {
        transform: translateY(-1px) scale(0.98);
        box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
    }

.btn-icon[b-cfwr47bkku] {
    font-size: 1.25rem;
}

/* Content Wrapper */
.content-wrapper[b-cfwr47bkku] {
    margin-top: 1.25rem;
    position: relative;
    z-index: 1;
}

/* Loading State */
.loading-container[b-cfwr47bkku] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    gap: 1rem;
}

    .loading-container p[b-cfwr47bkku] {
        color: white;
        font-size: 0.95rem;
        font-weight: 500;
    }

.spinner[b-cfwr47bkku] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-cfwr47bkku 0.8s linear infinite;
}

@keyframes spin-b-cfwr47bkku {
    to {
        transform: rotate(360deg);
    }
}

/* Empty State */
.empty-state[b-cfwr47bkku] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 3rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp-b-cfwr47bkku 0.5s ease;
}

@keyframes fadeInUp-b-cfwr47bkku {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.empty-icon[b-cfwr47bkku] {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.empty-state h3[b-cfwr47bkku] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.empty-state p[b-cfwr47bkku] {
    font-size: 0.938rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Masses List */
.masses-list[b-cfwr47bkku] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mass-card[b-cfwr47bkku] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp-b-cfwr47bkku 0.5s ease;
}

    .mass-card:hover[b-cfwr47bkku] {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }

.mass-header[b-cfwr47bkku] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 0.75rem;
}

    .mass-header h3[b-cfwr47bkku] {
        font-size: 1.125rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0;
        flex: 1;
        line-height: 1.3;
    }

.mass-points[b-cfwr47bkku] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 100%);
    color: white;
    border-radius: 10px;
    font-size: 0.813rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    flex-shrink: 0;
}

.mass-description[b-cfwr47bkku] {
    color: #555;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0.875rem;
}

.mass-details[b-cfwr47bkku] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mass-info[b-cfwr47bkku] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(91, 127, 219, 0.05) 100%);
    border-radius: 10px;
    transition: all 0.2s ease;
}

    .mass-info:hover[b-cfwr47bkku] {
        background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(91, 127, 219, 0.08) 100%);
    }

.info-icon[b-cfwr47bkku] {
    font-size: 1.35rem;
    flex-shrink: 0;
    line-height: 1;
}

.info-content[b-cfwr47bkku] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
}

.info-label[b-cfwr47bkku] {
    font-size: 0.688rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.info-value[b-cfwr47bkku] {
    font-size: 0.938rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 640px) {
    .masses-container[b-cfwr47bkku] {
        padding: 1rem 0.75rem;
        padding-top: calc(env(safe-area-inset-top) + 1rem);
        padding-bottom: calc(env(safe-area-inset-bottom) + 110px);
    }

    .page-header[b-cfwr47bkku] {
        margin-top: 2rem;
    }

        .page-header h1[b-cfwr47bkku] {
            font-size: 1.375rem;
        }

        .page-header p[b-cfwr47bkku] {
            font-size: 0.813rem;
        }

    .btn-report-mass[b-cfwr47bkku] {
        padding: 0.875rem 1.25rem;
        font-size: 0.938rem;
    }

    .mass-card[b-cfwr47bkku] {
        padding: 0.875rem;
    }

    .mass-header[b-cfwr47bkku] {
        margin-bottom: 0.625rem;
    }

    .mass-header h3[b-cfwr47bkku] {
        font-size: 1rem;
    }

    .mass-points[b-cfwr47bkku] {
        font-size: 0.75rem;
        padding: 0.3rem 0.625rem;
    }

    .mass-description[b-cfwr47bkku] {
        font-size: 0.813rem;
        margin-bottom: 0.75rem;
    }

    .mass-details[b-cfwr47bkku] {
        gap: 0.4rem;
    }

    .mass-info[b-cfwr47bkku] {
        padding: 0.4rem;
        gap: 0.625rem;
    }

    .info-icon[b-cfwr47bkku] {
        font-size: 1.2rem;
    }

    .info-content[b-cfwr47bkku] {
        gap: 0.1rem;
    }

    .info-value[b-cfwr47bkku] {
        font-size: 0.875rem;
    }

    .empty-state[b-cfwr47bkku] {
        padding: 2rem 1rem;
    }

    .empty-icon[b-cfwr47bkku] {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .masses-container[b-cfwr47bkku] {
        padding: 2rem 1.5rem;
    }

    .content-wrapper[b-cfwr47bkku] {
        max-width: 900px;
        margin: 1.25rem auto 0;
    }

    .page-header[b-cfwr47bkku] {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .content-wrapper[b-cfwr47bkku] {
        max-width: 1100px;
    }

    .page-header[b-cfwr47bkku] {
        max-width: 1100px;
    }

    .masses-list[b-cfwr47bkku] {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
/* /Pages/fk/MorePage.razor.rz.scp.css */
.more-container[b-u4kpbf2ijw] {
    min-height: 100vh;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 20px 100px 20px;
}

.content-wrapper[b-u4kpbf2ijw] {
    max-width: 800px;
    margin: 0 auto;
}

/* Page Header */
.page-header[b-u4kpbf2ijw] {
    text-align: center;
    margin-bottom: 30px;
}

    .page-header h1[b-u4kpbf2ijw] {
        font-size: 32px;
        font-weight: 700;
        color: #1b6ec2;
        margin: 0 0 8px 0;
    }

.subtitle[b-u4kpbf2ijw] {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
}

/* Info Card */
.info-card[b-u4kpbf2ijw] {
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    border: 1px solid rgba(27,110,194,0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.info-icon-wrapper[b-u4kpbf2ijw] {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.info-icon[b-u4kpbf2ijw] {
    font-size: 48px;
}

.info-content h2[b-u4kpbf2ijw] {
    font-size: 22px;
    font-weight: 600;
    color: #1b6ec2;
    margin: 0 0 12px 0;
    text-align: center;
}

.info-content p[b-u4kpbf2ijw] {
    font-size: 15px;
    color: #495057;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

/* Coming Soon Card */
.coming-soon-card[b-u4kpbf2ijw] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.3);
    color: white;
}

.coming-soon-header[b-u4kpbf2ijw] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.coming-soon-icon[b-u4kpbf2ijw] {
    font-size: 32px;
}

.coming-soon-header h3[b-u4kpbf2ijw] {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.coming-soon-text[b-u4kpbf2ijw] {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    opacity: 0.95;
}

.features-list[b-u4kpbf2ijw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.feature-item[b-u4kpbf2ijw] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.feature-icon[b-u4kpbf2ijw] {
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text[b-u4kpbf2ijw] {
    font-size: 14px;
    font-weight: 500;
}

/* Contact Card */
.contact-card[b-u4kpbf2ijw] {
    background: linear-gradient(135deg, #1b6ec2 0%, #264a8f 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(27, 110, 194, 0.3);
    color: white;
}

.contact-header[b-u4kpbf2ijw] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-icon[b-u4kpbf2ijw] {
    font-size: 28px;
}

.contact-header h3[b-u4kpbf2ijw] {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.contact-description[b-u4kpbf2ijw] {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    opacity: 0.95;
}

.contact-info[b-u4kpbf2ijw] {
    margin-bottom: 20px;
}

.contact-detail[b-u4kpbf2ijw] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-label[b-u4kpbf2ijw] {
    font-size: 14px;
    opacity: 0.9;
}

.email-link[b-u4kpbf2ijw] {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: background 0.2s ease;
}

    .email-link:hover[b-u4kpbf2ijw] {
        background: rgba(255, 255, 255, 0.25);
        text-decoration: none;
        color: white;
    }

.btn-contact[b-u4kpbf2ijw] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: white;
    color: #1b6ec2;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

    .btn-contact:hover[b-u4kpbf2ijw] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

    .btn-contact:active[b-u4kpbf2ijw] {
        transform: translateY(0);
    }

/* Bug Card */
.bug-card[b-u4kpbf2ijw] {
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    border: 1px solid rgba(255, 87, 34, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.bug-header[b-u4kpbf2ijw] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.bug-icon[b-u4kpbf2ijw] {
    font-size: 28px;
}

.bug-header h3[b-u4kpbf2ijw] {
    font-size: 20px;
    font-weight: 600;
    color: #ff5722;
    margin: 0;
}

.bug-text[b-u4kpbf2ijw] {
    font-size: 15px;
    color: #495057;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.btn-bug-report[b-u4kpbf2ijw] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #ff5722 0%, #e64a19 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

    .btn-bug-report:hover[b-u4kpbf2ijw] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 87, 34, 0.4);
    }

    .btn-bug-report:active[b-u4kpbf2ijw] {
        transform: translateY(0);
    }

.btn-icon[b-u4kpbf2ijw] {
    font-size: 20px;
}

/* Version Card */
.version-card[b-u4kpbf2ijw] {
    display: flex;
    justify-content: space-around;
    gap: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    border: 1px solid rgba(108, 117, 125, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.version-info[b-u4kpbf2ijw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.version-label[b-u4kpbf2ijw] {
    font-size: 13px;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.version-number[b-u4kpbf2ijw] {
    font-size: 18px;
    color: #1b6ec2;
    font-weight: 700;
}

/* Footer */
.footer-text[b-u4kpbf2ijw] {
    text-align: center;
    padding: 20px 0;
}

    .footer-text p[b-u4kpbf2ijw] {
        font-size: 13px;
        color: #6c757d;
        margin: 4px 0;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .more-container[b-u4kpbf2ijw] {
        padding: 16px 16px 100px 16px;
    }

    .page-header h1[b-u4kpbf2ijw] {
        font-size: 28px;
    }

    .info-card[b-u4kpbf2ijw],
    .coming-soon-card[b-u4kpbf2ijw],
    .contact-card[b-u4kpbf2ijw],
    .bug-card[b-u4kpbf2ijw] {
        padding: 20px;
    }

    .features-list[b-u4kpbf2ijw] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .page-header h1[b-u4kpbf2ijw] {
        font-size: 24px;
    }

    .info-icon[b-u4kpbf2ijw] {
        font-size: 40px;
    }

    .contact-icon[b-u4kpbf2ijw],
    .bug-icon[b-u4kpbf2ijw],
    .coming-soon-icon[b-u4kpbf2ijw] {
        font-size: 24px;
    }

    .btn-contact[b-u4kpbf2ijw],
    .btn-bug-report[b-u4kpbf2ijw] {
        font-size: 15px;
        padding: 12px 20px;
    }

    .version-card[b-u4kpbf2ijw] {
        flex-direction: column;
        gap: 12px;
    }
}
/* /Pages/fk/MyEventsPage.razor.rz.scp.css */
body[b-4wpb8hk9t6] {
}

.my-events-container[b-4wpb8hk9t6] {
    max-width: 100vw;
    margin: 0;
    padding: 1rem 0.75rem;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 120px;
}

.my-events-container[b-4wpb8hk9t6]::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 250px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
        pointer-events: none;
        z-index: 0;
    }

/* Page Header */
.page-header[b-4wpb8hk9t6] {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: fadeInDown-b-4wpb8hk9t6 0.6s ease;
}

.btn-back-header[b-4wpb8hk9t6] {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.btn-back-header:active[b-4wpb8hk9t6] {
        transform: scale(0.95);
    }

.header-content[b-4wpb8hk9t6] {
    flex: 1;
    text-align: center;
}

.header-content h1[b-4wpb8hk9t6] {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        margin: 0 0 0.375rem 0;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

.header-content p[b-4wpb8hk9t6] {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
        font-weight: 500;
    }

@keyframes fadeInDown-b-4wpb8hk9t6 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Card */
.stats-card[b-4wpb8hk9t6] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    animation: fadeInUp-b-4wpb8hk9t6 0.5s ease 0.1s both;
}

.stat-item[b-4wpb8hk9t6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(91, 127, 219, 0.08) 100%);
    border-radius: 12px;
}

.stat-value[b-4wpb8hk9t6] {
        font-size: 1.75rem;
        font-weight: 700;
        background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
    }

.stat-label[b-4wpb8hk9t6] {
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Content Wrapper */
.content-wrapper[b-4wpb8hk9t6] {
    position: relative;
    z-index: 1;
}

/* Loading State */
.loading-container[b-4wpb8hk9t6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    gap: 1rem;
}

.loading-container p[b-4wpb8hk9t6] {
        color: white;
        font-size: 0.95rem;
        font-weight: 500;
    }

.spinner[b-4wpb8hk9t6] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-4wpb8hk9t6 0.8s linear infinite;
}

@keyframes spin-b-4wpb8hk9t6 {
    to {
        transform: rotate(360deg);
    }
}

/* Empty State */
.empty-state[b-4wpb8hk9t6] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 3rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp-b-4wpb8hk9t6 0.5s ease;
}

.empty-icon[b-4wpb8hk9t6] {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.empty-state h3[b-4wpb8hk9t6] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.empty-state p[b-4wpb8hk9t6] {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0 0 1.5rem 0;
}

.btn-browse-events[b-4wpb8hk9t6] {
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.btn-browse-events:active[b-4wpb8hk9t6] {
        transform: scale(0.96);
    }

/* Category Section */
.category-section[b-4wpb8hk9t6] {
    margin-bottom: 1rem;
    animation: fadeInUp-b-4wpb8hk9t6 0.5s ease;
    transition: all 0.3s ease;
}

.category-section:last-child[b-4wpb8hk9t6] {
        margin-bottom: 1rem;
    }

.category-section.collapsed[b-4wpb8hk9t6] {
        margin-bottom: 0.75rem;
    }

@keyframes fadeInUp-b-4wpb8hk9t6 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category Header */
.category-header[b-4wpb8hk9t6] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 0.875rem 1.125rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.category-header:active[b-4wpb8hk9t6] {
        transform: scale(0.98);
    }

.category-header[b-4wpb8hk9t6]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
        border-radius: 14px 0 0 14px;
    }

.category-header-content[b-4wpb8hk9t6] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.category-header-content h2[b-4wpb8hk9t6] {
        font-size: 1.125rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0;
        background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.event-count[b-4wpb8hk9t6] {
    background: rgba(74, 144, 226, 0.12);
    color: #4A90E2;
    padding: 0.25rem 0.625rem;
    border-radius: 8px;
    font-size: 0.813rem;
    font-weight: 600;
    min-width: 28px;
    text-align: center;
}

.toggle-icon[b-4wpb8hk9t6] {
    font-size: 0.875rem;
    color: #4A90E2;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-left: 0.5rem;
}

.category-section.expanded .toggle-icon[b-4wpb8hk9t6] {
    transform: rotate(0deg);
}

.category-section.collapsed .toggle-icon[b-4wpb8hk9t6] {
    transform: rotate(-90deg);
}

.category-section.collapsed .category-header[b-4wpb8hk9t6] {
    margin-bottom: 0;
}

/* Events List */
.events-list[b-4wpb8hk9t6] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: slideDown-b-4wpb8hk9t6 0.3s ease;
}

@keyframes slideDown-b-4wpb8hk9t6 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 640px) {
    .my-events-container[b-4wpb8hk9t6] {
        padding: 1rem 0.75rem;
        padding-top: calc(env(safe-area-inset-top) + 1rem);
        padding-bottom: calc(env(safe-area-inset-bottom) + 110px);
    }

    .page-header[b-4wpb8hk9t6] {
        margin-top: 2rem;
    }

    .header-content h1[b-4wpb8hk9t6] {
        font-size: 1.25rem;
    }

    .header-content p[b-4wpb8hk9t6] {
        font-size: 0.813rem;
    }

    .stats-card[b-4wpb8hk9t6] {
        padding: 1rem;
        gap: 0.75rem;
    }

    .stat-value[b-4wpb8hk9t6] {
        font-size: 1.5rem;
    }

    .stat-label[b-4wpb8hk9t6] {
        font-size: 0.688rem;
    }

    .category-header[b-4wpb8hk9t6] {
        padding: 0.75rem 1rem;
    }

    .category-header-content h2[b-4wpb8hk9t6] {
        font-size: 1rem;
    }

    .event-count[b-4wpb8hk9t6] {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
        min-width: 24px;
    }

    .toggle-icon[b-4wpb8hk9t6] {
        font-size: 0.75rem;
        width: 20px;
        height: 20px;
    }

    .empty-state[b-4wpb8hk9t6] {
        padding: 2rem 1rem;
    }

    .empty-icon[b-4wpb8hk9t6] {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .my-events-container[b-4wpb8hk9t6] {
        padding: 2rem 1.5rem;
    }

    .content-wrapper[b-4wpb8hk9t6] {
        max-width: 900px;
        margin: 0 auto;
    }

    .stats-card[b-4wpb8hk9t6] {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .category-header[b-4wpb8hk9t6] {
        padding: 1rem 1.5rem;
    }

    .category-header-content h2[b-4wpb8hk9t6] {
        font-size: 1.25rem;
    }

    .event-count[b-4wpb8hk9t6] {
        font-size: 0.875rem;
        padding: 0.3rem 0.75rem;
        min-width: 32px;
    }
}

@media (min-width: 1024px) {
    .content-wrapper[b-4wpb8hk9t6] {
        max-width: 1100px;
    }

    .stats-card[b-4wpb8hk9t6] {
        max-width: 1100px;
    }

    .events-list[b-4wpb8hk9t6] {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
/* /Pages/fk/ReportExternalMassPage.razor.rz.scp.css */
/* Container mit Gradient-Background wie die anderen Seiten */
.external-mass-container[b-id3onvd06r] {
    max-width: 100vw;
    margin: 0;
    padding: 1rem 0.75rem;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 120px;
}

    .external-mass-container[b-id3onvd06r]::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 250px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
        pointer-events: none;
        z-index: 0;
    }

/* Page Header mit Back-Button */
.page-header[b-id3onvd06r] {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInDown-b-id3onvd06r 0.5s ease;
}

.btn-back-arrow[b-id3onvd06r] {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .btn-back-arrow:active[b-id3onvd06r] {
        transform: scale(0.95);
        background: rgba(255, 255, 255, 0.35);
    }

.header-content[b-id3onvd06r] {
    flex: 1;
}

    .header-content h1[b-id3onvd06r] {
        font-size: 1.375rem;
        font-weight: 700;
        color: white;
        margin: 0 0 0.25rem 0;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        line-height: 1.3;
    }

    .header-content p[b-id3onvd06r] {
        font-size: 0.813rem;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
        font-weight: 500;
    }

@keyframes fadeInDown-b-id3onvd06r {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Wrapper */
.content-wrapper[b-id3onvd06r] {
    position: relative;
    z-index: 1;
    animation: fadeInUp-b-id3onvd06r 0.5s ease;
}

@keyframes fadeInUp-b-id3onvd06r {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Card */
.form-card[b-id3onvd06r] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Form Section */
.form-section[b-id3onvd06r] {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid rgba(74, 144, 226, 0.1);
}

    .form-section:last-child[b-id3onvd06r] {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .form-section h3[b-id3onvd06r] {
        font-size: 1rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 0.75rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

.section-info[b-id3onvd06r] {
    font-size: 0.813rem;
    color: #666;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

/* Form Groups */
.form-group[b-id3onvd06r] {
    margin-bottom: 1rem;
}

    .form-group:last-child[b-id3onvd06r] {
        margin-bottom: 0;
    }

    .form-group label[b-id3onvd06r] {
        display: block;
        font-size: 0.875rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.5rem;
    }

    /* Input-Felder - Mobile-optimiert mit Blazor-Support */
    .form-input[b-id3onvd06r],
    .form-textarea[b-id3onvd06r],
    input.form-input[b-id3onvd06r],
    textarea.form-textarea[b-id3onvd06r],
    select.form-input[b-id3onvd06r],
    .form-group input[b-id3onvd06r],
    .form-group textarea[b-id3onvd06r],
    .form-group select[b-id3onvd06r] {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0.875rem 0.75rem;
        border: 2px solid rgba(74, 144, 226, 0.2);
        border-radius: 10px;
        font-size: 16px; /* Verhindert Auto-Zoom auf iOS */
        line-height: 1.5;
        transition: all 0.2s ease;
        font-family: inherit;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: white;
        color: #1a1a1a;
        min-height: 44px; /* Touch-optimiert für iOS */
        touch-action: manipulation;
    }

/* Blazor InputDate, InputText, InputTextArea, InputSelect */
[b-id3onvd06r] .form-input,
[b-id3onvd06r] .form-textarea {
    width: 100% !important;
    max-width: 100% !important;
}

/* Placeholder-Styling */
.form-input[b-id3onvd06r]::placeholder,
.form-textarea[b-id3onvd06r]::placeholder,
input.form-input[b-id3onvd06r]::placeholder,
textarea.form-textarea[b-id3onvd06r]::placeholder {
    color: #999;
    opacity: 1;
}

.form-input[b-id3onvd06r]::-webkit-input-placeholder,
.form-textarea[b-id3onvd06r]::-webkit-input-placeholder {
    color: #999;
}

.form-input[b-id3onvd06r]::-moz-placeholder,
.form-textarea[b-id3onvd06r]::-moz-placeholder {
    color: #999;
}

/* Focus-State */
.form-input:focus[b-id3onvd06r],
.form-textarea:focus[b-id3onvd06r],
input.form-input:focus[b-id3onvd06r],
textarea.form-textarea:focus[b-id3onvd06r],
select.form-input:focus[b-id3onvd06r] {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
    background: #fafbff;
}

/* Disabled-State */
.form-input:disabled[b-id3onvd06r],
.form-textarea:disabled[b-id3onvd06r],
input.form-input:disabled[b-id3onvd06r],
textarea.form-textarea:disabled[b-id3onvd06r],
select.form-input:disabled[b-id3onvd06r] {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Invalid-State */
.form-input.invalid[b-id3onvd06r],
.form-textarea.invalid[b-id3onvd06r],
input.invalid[b-id3onvd06r],
textarea.invalid[b-id3onvd06r],
select.invalid[b-id3onvd06r] {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.03);
}

    .form-input.invalid:focus[b-id3onvd06r],
    .form-textarea.invalid:focus[b-id3onvd06r],
    input.invalid:focus[b-id3onvd06r],
    textarea.invalid:focus[b-id3onvd06r],
    select.invalid:focus[b-id3onvd06r] {
        border-color: #dc3545;
        box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
    }

/* Valid-State */
.form-input.valid[b-id3onvd06r],
.form-textarea.valid[b-id3onvd06r],
input.valid[b-id3onvd06r],
textarea.valid[b-id3onvd06r],
select.valid[b-id3onvd06r] {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.03);
}

    .form-input.valid:focus[b-id3onvd06r],
    .form-textarea.valid:focus[b-id3onvd06r],
    input.valid:focus[b-id3onvd06r],
    textarea.valid:focus[b-id3onvd06r],
    select.valid:focus[b-id3onvd06r] {
        border-color: #28a745;
        box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
    }

/* Textarea-spezifisch */
.form-textarea[b-id3onvd06r],
textarea.form-textarea[b-id3onvd06r] {
    resize: vertical;
    min-height: 100px;
    max-height: 300px;
    line-height: 1.6;
}

/* Select-Felder */
.form-input[type="select"][b-id3onvd06r],
select.form-input[b-id3onvd06r] {
    padding-right: 2.5rem !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A90E2' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    cursor: pointer;
}

/* Date/DateTime Input */
.form-input[type="date"][b-id3onvd06r],
.form-input[type="datetime-local"][b-id3onvd06r],
.form-input[type="time"][b-id3onvd06r],
input[type="date"].form-input[b-id3onvd06r],
input[type="datetime-local"].form-input[b-id3onvd06r],
input[type="time"].form-input[b-id3onvd06r] {
    padding-right: 0.5rem;
    cursor: pointer;
}

    /* Remove default calendar icon on iOS */
    .form-input[type="date"][b-id3onvd06r]::-webkit-calendar-picker-indicator,
    .form-input[type="datetime-local"][b-id3onvd06r]::-webkit-calendar-picker-indicator,
    .form-input[type="time"][b-id3onvd06r]::-webkit-calendar-picker-indicator,
    input[type="date"].form-input[b-id3onvd06r]::-webkit-calendar-picker-indicator,
    input[type="datetime-local"].form-input[b-id3onvd06r]::-webkit-calendar-picker-indicator,
    input[type="time"].form-input[b-id3onvd06r]::-webkit-calendar-picker-indicator {
        background: transparent;
        bottom: 0;
        color: transparent;
        cursor: pointer;
        height: auto;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        width: auto;
    }

/* Form Row für zweispaltige Layouts */
.form-row[b-id3onvd06r] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.75rem;
}

    .form-row .form-group[b-id3onvd06r] {
        margin-bottom: 0;
    }

/* Validation Messages */
.validation-message[b-id3onvd06r] {
    color: #dc3545;
    font-size: 0.75rem;
    margin-top: 0.375rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    animation: slideIn-b-id3onvd06r 0.2s ease;
}

    .validation-message[b-id3onvd06r]::before {
        content: "⚠";
        font-size: 0.875rem;
    }

@keyframes slideIn-b-id3onvd06r {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* File Upload Area */
.file-upload-area[b-id3onvd06r] {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(91, 127, 219, 0.08) 100%);
    border: 2px dashed rgba(74, 144, 226, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

    .file-upload-area:hover[b-id3onvd06r] {
        background: linear-gradient(135deg, rgba(74, 144, 226, 0.12) 0%, rgba(91, 127, 219, 0.12) 100%);
        border-color: rgba(74, 144, 226, 0.5);
    }

    .file-upload-area:active[b-id3onvd06r] {
        transform: scale(0.99);
    }

.file-input[b-id3onvd06r] {
    display: none;
}

.file-upload-label[b-id3onvd06r] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: #4A90E2;
    font-weight: 600;
    font-size: 0.938rem;
}

.upload-icon[b-id3onvd06r] {
    font-size: 2.5rem;
}

.file-uploaded[b-id3onvd06r] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.875rem;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15) 0%, rgba(34, 139, 34, 0.15) 100%);
    border-radius: 10px;
}

.file-icon[b-id3onvd06r] {
    font-size: 1.5rem;
}

.file-name[b-id3onvd06r] {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 600;
    color: #28a745;
    word-break: break-word;
}

.btn-remove-file[b-id3onvd06r] {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: none;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

    .btn-remove-file:active[b-id3onvd06r] {
        transform: scale(0.95);
        background: rgba(220, 53, 69, 0.2);
    }

/* Upload Progress */
.upload-progress[b-id3onvd06r] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 10px;
    color: #4A90E2;
    font-size: 0.875rem;
    font-weight: 600;
}

.spinner-small[b-id3onvd06r] {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(74, 144, 226, 0.3);
    border-top-color: #4A90E2;
    border-radius: 50%;
    animation: spin-b-id3onvd06r 0.6s linear infinite;
}

@keyframes spin-b-id3onvd06r {
    to {
        transform: rotate(360deg);
    }
}

/* Form Actions */
.form-actions[b-id3onvd06r] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn-submit[b-id3onvd06r],
.btn-cancel[b-id3onvd06r] {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 0.938rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
}

.btn-submit[b-id3onvd06r] {
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    color: white;
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.35);
}

    .btn-submit:not(:disabled):active[b-id3onvd06r] {
        transform: scale(0.98);
    }

    .btn-submit:disabled[b-id3onvd06r] {
        opacity: 0.6;
        cursor: not-allowed;
        background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
    }

.btn-cancel[b-id3onvd06r] {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 2px solid #6c757d;
}

    .btn-cancel:active[b-id3onvd06r] {
        transform: scale(0.98);
        background: rgba(108, 117, 125, 0.2);
    }

/* Success & Error Cards */
.success-card[b-id3onvd06r],
.error-card[b-id3onvd06r] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInScale-b-id3onvd06r 0.5s ease;
}

@keyframes fadeInScale-b-id3onvd06r {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon[b-id3onvd06r],
.error-icon[b-id3onvd06r] {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.success-icon[b-id3onvd06r] {
    color: #28a745;
}

.error-icon[b-id3onvd06r] {
    color: #dc3545;
}

.success-card h2[b-id3onvd06r],
.error-card h2[b-id3onvd06r] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
}

.success-card p[b-id3onvd06r],
.error-card p[b-id3onvd06r] {
    font-size: 0.938rem;
    color: #666;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.btn-primary[b-id3onvd06r],
.btn-secondary[b-id3onvd06r] {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0.75rem;
    min-height: 48px;
}

.btn-primary[b-id3onvd06r] {
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

    .btn-primary:active[b-id3onvd06r] {
        transform: scale(0.98);
    }

.btn-secondary[b-id3onvd06r] {
    background: white;
    color: #6c757d;
    border: 2px solid #dee2e6;
}

    .btn-secondary:active[b-id3onvd06r] {
        transform: scale(0.98);
        background: #f8f9fa;
    }

/* Responsive Design */
@media (max-width: 640px) {
    .external-mass-container[b-id3onvd06r] {
        padding: 1rem 0.75rem;
        padding-top: calc(env(safe-area-inset-top) + 1rem);
        padding-bottom: calc(env(safe-area-inset-bottom) + 110px);
    }

    .page-header[b-id3onvd06r] {
        margin-top: 2rem;
    }

    .header-content h1[b-id3onvd06r] {
        font-size: 1.25rem;
    }

    .form-card[b-id3onvd06r] {
        padding: 1rem;
    }

    .form-section h3[b-id3onvd06r] {
        font-size: 0.938rem;
    }

    .form-row[b-id3onvd06r] {
        grid-template-columns: 1fr;
    }

    .form-actions[b-id3onvd06r] {
        flex-direction: column;
    }

    .btn-submit[b-id3onvd06r],
    .btn-cancel[b-id3onvd06r],
    .btn-primary[b-id3onvd06r],
    .btn-secondary[b-id3onvd06r] {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .external-mass-container[b-id3onvd06r] {
        padding: 2rem 1.5rem;
    }

    .content-wrapper[b-id3onvd06r] {
        max-width: 600px;
        margin: 0 auto;
    }

    .page-header h1[b-id3onvd06r] {
        font-size: 1.75rem;
    }
}

/* iOS-spezifische Anpassungen */
@supports (-webkit-touch-callout: none) {
    .form-input[type="date"][b-id3onvd06r],
    .form-input[type="datetime-local"][b-id3onvd06r],
    .form-input[type="time"][b-id3onvd06r],
    input[type="date"].form-input[b-id3onvd06r],
    input[type="datetime-local"].form-input[b-id3onvd06r],
    input[type="time"].form-input[b-id3onvd06r] {
        -webkit-appearance: none;
        appearance: none;
        background-color: white;
        min-height: 44px;
        padding-right: 0.75rem;
    }
        /* Fix für iOS Safari Date-Picker */
        .form-input[type="date"][b-id3onvd06r]::-webkit-date-and-time-value,
        .form-input[type="datetime-local"][b-id3onvd06r]::-webkit-date-and-time-value,
        input[type="date"].form-input[b-id3onvd06r]::-webkit-date-and-time-value,
        input[type="datetime-local"].form-input[b-id3onvd06r]::-webkit-date-and-time-value {
            text-align: left;
        }
}

/* Dark Mode Support (optional) */
@media (prefers-color-scheme: dark) {
    .form-input[b-id3onvd06r],
    .form-textarea[b-id3onvd06r],
    input.form-input[b-id3onvd06r],
    textarea.form-textarea[b-id3onvd06r],
    select.form-input[b-id3onvd06r] {
        background: #fff;
        color: #1a1a1a;
    }
}

/* Autofill-Styling */
.form-input:-webkit-autofill[b-id3onvd06r],
.form-input:-webkit-autofill:hover[b-id3onvd06r],
.form-input:-webkit-autofill:focus[b-id3onvd06r],
input.form-input:-webkit-autofill[b-id3onvd06r],
input.form-input:-webkit-autofill:hover[b-id3onvd06r],
input.form-input:-webkit-autofill:focus[b-id3onvd06r] {
    -webkit-box-shadow: 0 0 0 1000px white inset;
    -webkit-text-fill-color: #1a1a1a;
    border-color: #4A90E2;
}
/* /Pages/fk/ReportInternalMassPage.razor.rz.scp.css */
/* Generated by GitHub Copilot */
.internal-mass-container[b-vv410iawk4] {
    max-width: 100vw;
    margin: 0;
    padding: 1rem 0.75rem;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 120px;
}

    .internal-mass-container[b-vv410iawk4]::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 250px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
        pointer-events: none;
        z-index: 0;
    }

/* Page Header */
.page-header[b-vv410iawk4] {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInDown-b-vv410iawk4 0.6s ease;
}

.btn-back[b-vv410iawk4] {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .btn-back:active[b-vv410iawk4] {
        transform: scale(0.95);
        background: rgba(255, 255, 255, 0.35);
    }

.header-content[b-vv410iawk4] {
    flex: 1;
}

    .header-content h1[b-vv410iawk4] {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        margin: 0 0 0.25rem 0;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .header-content p[b-vv410iawk4] {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.95);
        margin: 0;
        font-weight: 500;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

@keyframes fadeInDown-b-vv410iawk4 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Wrapper */
.content-wrapper[b-vv410iawk4] {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* Card Base */
.scanner-card[b-vv410iawk4],
.success-card[b-vv410iawk4],
.error-card[b-vv410iawk4] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp-b-vv410iawk4 0.5s ease;
}

@keyframes fadeInUp-b-vv410iawk4 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scanner Info */
.scanner-info[b-vv410iawk4] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.scanner-icon[b-vv410iawk4] {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.scanner-info h3[b-vv410iawk4] {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.scanner-info p[b-vv410iawk4] {
    margin: 0;
    color: #666;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Scanner Area */
.scanner-area[b-vv410iawk4] {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 1.5rem auto;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

#qr-video[b-vv410iawk4] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scanner-overlay[b-vv410iawk4] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scanner-frame[b-vv410iawk4] {
    width: 60%;
    height: 60%;
    border: 3px solid #4A90E2;
    border-radius: 12px;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
    animation: pulse-b-vv410iawk4 2s ease-in-out infinite;
}

@keyframes pulse-b-vv410iawk4 {
    0%, 100% {
        border-color: #4A90E2;
        box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
    }
    50% {
        border-color: #5B7FDB;
        box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.6);
    }
}

/* Loading Indicator */
.loading-indicator[b-vv410iawk4] {
    text-align: center;
    padding: 1.5rem;
}

.spinner[b-vv410iawk4] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(74, 144, 226, 0.2);
    border-top-color: #4A90E2;
    border-radius: 50%;
    animation: spin-b-vv410iawk4 0.8s linear infinite;
    margin: 0 auto 1rem auto;
}

@keyframes spin-b-vv410iawk4 {
    to {
        transform: rotate(360deg);
    }
}

/* Buttons */
.btn-start-camera[b-vv410iawk4] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
    position: relative;
    overflow: hidden;
}

    .btn-start-camera[b-vv410iawk4]::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 12px;
        padding: 2px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .btn-start-camera:active[b-vv410iawk4] {
        transform: scale(0.98);
        box-shadow: 0 4px 16px rgba(74, 144, 226, 0.5);
    }

.btn-cancel[b-vv410iawk4] {
    width: 100%;
    padding: 0.875rem;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 2px solid #dc3545;
    border-radius: 12px;
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-cancel:hover[b-vv410iawk4] {
        background: rgba(220, 53, 69, 0.15);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
    }

    .btn-cancel:active[b-vv410iawk4] {
        transform: scale(0.98);
    }

/* Manual Input */
.manual-input[b-vv410iawk4] {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(74, 144, 226, 0.1);
}

.manual-label[b-vv410iawk4] {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.75rem;
    text-align: center;
    font-weight: 600;
}

.code-input[b-vv410iawk4] {
    width: 100%;
    box-sizing: border-box;
    padding: 0.875rem;
    border: 2px solid rgba(74, 144, 226, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
    background: white;
}

    .code-input:focus[b-vv410iawk4] {
        outline: none;
        border-color: #4A90E2;
        box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
    }

.btn-submit-code[b-vv410iawk4] {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

    .btn-submit-code:hover:not(:disabled)[b-vv410iawk4] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
    }

    .btn-submit-code:active:not(:disabled)[b-vv410iawk4] {
        transform: scale(0.98);
    }

    .btn-submit-code:disabled[b-vv410iawk4] {
        opacity: 0.5;
        cursor: not-allowed;
        box-shadow: none;
    }

/* Success Card */
.success-card[b-vv410iawk4] {
    text-align: center;
}

.success-icon[b-vv410iawk4] {
    display: inline-flex;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    font-size: 3rem;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.3);
}

.success-card h2[b-vv410iawk4] {
    margin: 0 0 0.75rem 0;
    color: #28a745;
    font-size: 1.5rem;
    font-weight: 700;
}

.success-card p[b-vv410iawk4] {
    margin: 0 0 1.5rem 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.points-badge[b-vv410iawk4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(91, 127, 219, 0.08) 100%);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(74, 144, 226, 0.2);
}

.points-value[b-vv410iawk4] {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.points-label[b-vv410iawk4] {
    font-size: 0.875rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-primary[b-vv410iawk4] {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

    .btn-primary:active[b-vv410iawk4] {
        transform: scale(0.98);
        box-shadow: 0 4px 16px rgba(74, 144, 226, 0.5);
    }

.btn-secondary[b-vv410iawk4] {
    width: 100%;
    padding: 0.875rem;
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 2px solid #6c757d;
    border-radius: 12px;
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-secondary:hover[b-vv410iawk4] {
        background: rgba(108, 117, 125, 0.15);
        transform: translateY(-2px);
    }

    .btn-secondary:active[b-vv410iawk4] {
        transform: scale(0.98);
    }

/* Error Card */
.error-card[b-vv410iawk4] {
    text-align: center;
}

.error-icon[b-vv410iawk4] {
    display: inline-flex;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    font-size: 3rem;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(220, 53, 69, 0.3);
}

.error-card h2[b-vv410iawk4] {
    margin: 0 0 0.75rem 0;
    color: #dc3545;
    font-size: 1.5rem;
    font-weight: 700;
}

.error-card p[b-vv410iawk4] {
    margin: 0 0 1.5rem 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 640px) {
    .internal-mass-container[b-vv410iawk4] {
        padding: 1rem 0.75rem;
        padding-top: calc(env(safe-area-inset-top) + 1rem);
        padding-bottom: calc(env(safe-area-inset-bottom) + 110px);
    }

    .page-header[b-vv410iawk4] {
        margin-top: 2rem;
    }

        .page-header h1[b-vv410iawk4] {
            font-size: 1.375rem;
        }

    .scanner-card[b-vv410iawk4],
    .success-card[b-vv410iawk4],
    .error-card[b-vv410iawk4] {
        padding: 1.25rem;
    }

    .scanner-icon[b-vv410iawk4] {
        font-size: 3rem;
    }

    .scanner-info h3[b-vv410iawk4] {
        font-size: 1.125rem;
    }

    .success-icon[b-vv410iawk4],
    .error-icon[b-vv410iawk4] {
        width: 64px;
        height: 64px;
        font-size: 2.5rem;
    }

    .points-value[b-vv410iawk4] {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .internal-mass-container[b-vv410iawk4] {
        padding: 2rem 1.5rem;
    }

    .content-wrapper[b-vv410iawk4] {
        max-width: 650px;
    }
}
/* /Pages/fk/ReportMassPage.razor.rz.scp.css */
.report-mass-container[b-ptp16wh5ae] {
    max-width: 100vw;
    margin: 0;
    padding: 1rem 0.75rem;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 120px;
}

    .report-mass-container[b-ptp16wh5ae]::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 250px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
        pointer-events: none;
        z-index: 0;
    }

/* Page Header */
.page-header[b-ptp16wh5ae] {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInDown-b-ptp16wh5ae 0.6s ease;
}

    .page-header h1[b-ptp16wh5ae] {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        margin: 0 0 0.375rem 0;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .page-header p[b-ptp16wh5ae] {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
        font-weight: 500;
    }

@keyframes fadeInDown-b-ptp16wh5ae {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dialog Content */
.dialog-content[b-ptp16wh5ae] {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.dialog-card[b-ptp16wh5ae] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp-b-ptp16wh5ae 0.5s ease;
}

@keyframes fadeInUp-b-ptp16wh5ae {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dialog-header[b-ptp16wh5ae] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
}

.dialog-icon[b-ptp16wh5ae] {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.dialog-header h2[b-ptp16wh5ae] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

/* Dialog Options */
.dialog-options[b-ptp16wh5ae] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.option-btn[b-ptp16wh5ae] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(91, 127, 219, 0.05) 100%);
    border: 2px solid rgba(74, 144, 226, 0.2);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    position: relative;
}

    .option-btn:hover[b-ptp16wh5ae] {
        border-color: #4A90E2;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(74, 144, 226, 0.25);
        background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(91, 127, 219, 0.08) 100%);
    }

    .option-btn:active[b-ptp16wh5ae] {
        transform: translateY(0) scale(0.98);
    }

.option-icon[b-ptp16wh5ae] {
    font-size: 2.25rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
}

.option-content[b-ptp16wh5ae] {
    flex: 1;
}

    .option-content h3[b-ptp16wh5ae] {
        font-size: 1.063rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 0.375rem 0;
    }

    .option-content p[b-ptp16wh5ae] {
        font-size: 0.813rem;
        color: #666;
        margin: 0;
        line-height: 1.5;
    }

.arrow[b-ptp16wh5ae] {
    font-size: 1.5rem;
    color: #4A90E2;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.option-btn:hover .arrow[b-ptp16wh5ae] {
    transform: translateX(4px);
}

/* Cancel Button */
.btn-cancel[b-ptp16wh5ae] {
    width: 100%;
    padding: 0.875rem;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 2px solid #dc3545;
    border-radius: 12px;
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-cancel:hover[b-ptp16wh5ae] {
        background: rgba(220, 53, 69, 0.15);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
    }

    .btn-cancel:active[b-ptp16wh5ae] {
        transform: scale(0.98);
    }

/* Responsive Design */
@media (max-width: 640px) {
    .report-mass-container[b-ptp16wh5ae] {
        padding: 1rem 0.75rem;
        padding-top: calc(env(safe-area-inset-top) + 1rem);
        padding-bottom: calc(env(safe-area-inset-bottom) + 110px);
    }

    .page-header[b-ptp16wh5ae] {
        margin-top: 2rem;
    }

        .page-header h1[b-ptp16wh5ae] {
            font-size: 1.375rem;
        }

    .dialog-card[b-ptp16wh5ae] {
        padding: 1.25rem;
    }

    .dialog-icon[b-ptp16wh5ae] {
        font-size: 3rem;
    }

    .option-btn[b-ptp16wh5ae] {
        padding: 1rem;
        gap: 0.875rem;
    }

    .option-icon[b-ptp16wh5ae] {
        font-size: 2rem;
        width: 48px;
        height: 48px;
    }

    .option-content h3[b-ptp16wh5ae] {
        font-size: 1rem;
    }

    .option-content p[b-ptp16wh5ae] {
        font-size: 0.75rem;
    }

    .arrow[b-ptp16wh5ae] {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .report-mass-container[b-ptp16wh5ae] {
        padding: 2rem 1.5rem;
    }

    .dialog-content[b-ptp16wh5ae] {
        max-width: 650px;
    }

    .dialog-card[b-ptp16wh5ae] {
        padding: 2rem;
    }

    .option-btn[b-ptp16wh5ae] {
        padding: 1.25rem;
    }
}
/* /Pages/LoginPage.razor.rz.scp.css */
/* Hintergrund für die gesamte Seite sicherstellen */
:host[b-35t3aeja8w] {
    display: block;
    min-height: 100vh;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
}

.body[b-35t3aeja8w] {
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
}

.login-container[b-35t3aeja8w] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    padding: 20px;
}

.login-card[b-35t3aeja8w] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 420px;
    animation: slideUp-b-35t3aeja8w 0.4s ease-out;
}

@keyframes slideUp-b-35t3aeja8w {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header[b-35t3aeja8w] {
    text-align: center;
    margin-bottom: 32px;
}

.login-header h1[b-35t3aeja8w] {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.login-header p[b-35t3aeja8w] {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.login-form[b-35t3aeja8w] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input-group[b-35t3aeja8w] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label[b-35t3aeja8w] {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.fluent-input[b-35t3aeja8w] {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s ease;
    background: #fff;
    outline: none;
}

.fluent-input:hover[b-35t3aeja8w] {
    border-color: #b0b0b0;
}

.fluent-input:focus[b-35t3aeja8w] {
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}

.fluent-input[b-35t3aeja8w]::placeholder {
    color: #999;
}

.btn-primary[b-35t3aeja8w] {
    padding: 14px 24px;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.35);
}

.btn-primary:hover[b-35t3aeja8w] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.45);
}

.btn-primary:active[b-35t3aeja8w] {
    transform: translateY(0);
}

.action-buttons[b-35t3aeja8w] {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn-secondary[b-35t3aeja8w] {
    flex: 1;
    padding: 12px 20px;
    background: #fff;
    color: #4A90E2;
    border: 2px solid #4A90E2;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover[b-35t3aeja8w] {
    background: #4A90E2;
    color: white;
    transform: translateY(-1px);
}

.btn-back[b-35t3aeja8w] {
    flex: 1;
    padding: 12px 20px;
    background: #f5f5f5;
    color: #666;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-back:hover[b-35t3aeja8w] {
    background: #e8e8e8;
    border-color: #d0d0d0;
    color: #333;
    transform: translateY(-1px);
}

.error-message[b-35t3aeja8w] {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-left: 4px solid #ef4444;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn-b-35t3aeja8w 0.3s ease-out;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.15);
}

.error-message[b-35t3aeja8w]::before {
    content: "⚠";
    font-size: 20px;
    color: #ef4444;
    flex-shrink: 0;
}

.error-message span[b-35t3aeja8w] {
    color: #dc2626;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

@keyframes slideIn-b-35t3aeja8w {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .error-message[b-35t3aeja8w] {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.15) 100%);
        border-color: rgba(239, 68, 68, 0.4);
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
    }

    .error-message[b-35t3aeja8w]::before {
        color: #fca5a5;
    }

    .error-message span[b-35t3aeja8w] {
        color: #fca5a5;
    }
}

@media (max-width: 480px) {
    .login-card[b-35t3aeja8w] {
        padding: 28px 20px;
    }

    .login-header h1[b-35t3aeja8w] {
        font-size: 24px;
    }

    .action-buttons[b-35t3aeja8w] {
        flex-direction: column;
    }
}
/* /Pages/Onboarding.razor.rz.scp.css */
/* ========================================
   Onboarding Page - Modern UI/UX Design
   ======================================== */

/* Container & Layout */
.onboarding-screen[b-coltmqwxj6] {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    background-size: 400% 400%;
}

/* Animierter Hintergrund */
.animated-bg[b-coltmqwxj6] {
    animation: gradientShift-b-coltmqwxj6 8s ease-in-out infinite;
}

@keyframes gradientShift-b-coltmqwxj6 {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Background Layers */
.bg-aurora[b-coltmqwxj6] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(74, 144, 226, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(107, 95, 207, 0.2) 0%, transparent 50%);
    animation: auroraMove-b-coltmqwxj6 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes auroraMove-b-coltmqwxj6 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.bg-grid[b-coltmqwxj6] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.bg-noise[b-coltmqwxj6] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Main Container */
.onboarding-container[b-coltmqwxj6] {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 440px;
    margin: 2rem;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: slideUp-b-coltmqwxj6 0.6s ease-out;
}

@keyframes slideUp-b-coltmqwxj6 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title */
.onboarding-title[b-coltmqwxj6] {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 2rem 0;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* Form */
.onboarding-form[b-coltmqwxj6] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Input Groups */
.input-group[b-coltmqwxj6] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.input-group.floating[b-coltmqwxj6] {
    margin-top: 0.5rem;
}

/* Input Styling */
.onboarding-input[b-coltmqwxj6] {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.onboarding-input:focus[b-coltmqwxj6] {
    border-color: #4A90E2;
    box-shadow: 0 4px 16px rgba(74, 144, 226, 0.15),
                0 0 0 4px rgba(74, 144, 226, 0.1);
    transform: translateY(-2px);
}

.onboarding-input:hover:not(:focus)[b-coltmqwxj6] {
    border-color: #b0b0b0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.onboarding-input.invalid[b-coltmqwxj6] {
    border-color: #ef4444;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.1);
}

.onboarding-input.invalid:focus[b-coltmqwxj6] {
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.15),
                0 0 0 4px rgba(239, 68, 68, 0.1);
}

/* Floating Labels */
.input-group.floating label[b-coltmqwxj6] {
    position: absolute;
    left: 1rem;
    top: 0.875rem;
    font-size: 1rem;
    color: #6b7280;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 0.25rem;
}

.input-group.floating input:focus + label[b-coltmqwxj6],
.input-group.floating input:not(:placeholder-shown) + label[b-coltmqwxj6] {
    top: -0.625rem;
    left: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4A90E2;
    background: #ffffff;
    padding: 0 0.375rem;
}

.input-group.floating input.invalid:focus + label[b-coltmqwxj6],
.input-group.floating input.invalid:not(:placeholder-shown) + label[b-coltmqwxj6] {
    color: #ef4444;
}

/* Password Strength Bar */
.password-strength[b-coltmqwxj6] {
    position: relative;
    height: 4px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 2px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.strength-bar[b-coltmqwxj6] {
    height: 100%;
    background: linear-gradient(90deg, #ef4444 0%, #f59e0b 50%, #10b981 100%);
    border-radius: 2px;
    transition: width 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 8px currentColor;
}

/* Error Text */
.error-text[b-coltmqwxj6] {
    font-size: 0.8125rem;
    color: #ef4444;
    margin-top: 0.375rem;
    padding-left: 0.25rem;
    display: flex;
    align-items: center;
    animation: shake-b-coltmqwxj6 0.3s ease;
}

@keyframes shake-b-coltmqwxj6 {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

/* Submit Button */
.onboarding-btn[b-coltmqwxj6] {
    margin-top: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #4A90E2 0%, #5B7FDB 50%, #6B5FCF 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.35);
    text-transform: none;
    letter-spacing: 0.5px;
}

.onboarding-btn:hover:not(:disabled)[b-coltmqwxj6] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.45);
}

.onboarding-btn:active:not(:disabled)[b-coltmqwxj6] {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.35);
}

.onboarding-btn:disabled[b-coltmqwxj6] {
    opacity: 0.5;
    cursor: not-allowed;
    background: #9ca3af;
    box-shadow: none;
}

/* Secondary Button (Zurück-Button) */
.onboarding-btn-secondary[b-coltmqwxj6] {
    background: transparent;
    color: #4A90E2;
    border: 2px solid #4A90E2;
    box-shadow: none;
}

.onboarding-btn-secondary:hover:not(:disabled)[b-coltmqwxj6] {
    background: #4A90E2;
    color: #ffffff;
    border-color: #4A90E2;
    box-shadow: 0 4px 16px rgba(74, 144, 226, 0.2);
    transform: translateY(-2px);
}

.onboarding-btn-secondary:active:not(:disabled)[b-coltmqwxj6] {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.2);
}

/* Back Button */
.back-btn[b-coltmqwxj6] {
    position: absolute;
    top: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: white;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.back-btn:hover[b-coltmqwxj6] {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(-4px);
}

.back-btn svg[b-coltmqwxj6] {
    transition: transform 0.3s ease;
}

.back-btn:hover svg[b-coltmqwxj6] {
    transform: translateX(-4px);
}

/* Accessibility - Hidden Screen Reader Text */
.visually-hidden[b-coltmqwxj6] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive Design */
@media (max-width: 480px) {
    .onboarding-container[b-coltmqwxj6] {
        margin: 1rem;
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .onboarding-title[b-coltmqwxj6] {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .onboarding-form[b-coltmqwxj6] {
        gap: 1.25rem;
    }
}

/* Dark Mode Support (optional) */
@media (prefers-color-scheme: dark) {
    .onboarding-container[b-coltmqwxj6] {
        background: rgba(30, 30, 30, 0.95);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    }

    .onboarding-input[b-coltmqwxj6] {
        background: rgba(255, 255, 255, 0.05);
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.2);
    }

    .input-group.floating label[b-coltmqwxj6] {
        color: #9ca3af;
    }

    .input-group.floating input:focus + label[b-coltmqwxj6],
    .input-group.floating input:not(:placeholder-shown) + label[b-coltmqwxj6] {
        background: rgba(30, 30, 30, 0.95);
        color: #8b9fff;
    }

    .back-btn[b-coltmqwxj6] {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .back-btn:hover[b-coltmqwxj6] {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .onboarding-btn-secondary[b-coltmqwxj6] {
        color: #8b9fff;
        border-color: #8b9fff;
    }

    .onboarding-btn-secondary:hover:not(:disabled)[b-coltmqwxj6] {
        background: #8b9fff;
        color: #1e1e1e;
    }
}
/* /Pages/PasswordResetPage.razor.rz.scp.css */
body[b-5nnupcb1e2] {
}

.password-reset-container[b-5nnupcb1e2] {
    min-height: 100vh;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content-wrapper[b-5nnupcb1e2] {
    max-width: 600px;
    width: 100%;
    padding: 20px;
}

/* Header Icon */
.header-icon[b-5nnupcb1e2] {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-emoji[b-5nnupcb1e2] {
    font-size: 64px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Title */
.password-reset-container h1[b-5nnupcb1e2] {
    font-size: 28px;
    font-weight: 700;
    color: #1b6ec2;
    text-align: center;
    margin: 0 0 10px 0;
}

.subtitle[b-5nnupcb1e2] {
    font-size: 16px;
    color: #6c757d;
    text-align: center;
    margin: 0 0 30px 0;
}

/* Info Card */
.info-card[b-5nnupcb1e2] {
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    border: 1px solid rgba(27,110,194,0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.info-icon-wrapper[b-5nnupcb1e2] {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.info-icon[b-5nnupcb1e2] {
    font-size: 32px;
}

.info-content h2[b-5nnupcb1e2] {
    font-size: 20px;
    font-weight: 600;
    color: #1b6ec2;
    margin: 0 0 16px 0;
    text-align: center;
}

.instructions-list[b-5nnupcb1e2] {
    margin: 0;
    padding-left: 24px;
    color: #495057;
    line-height: 1.8;
}

.instructions-list li[b-5nnupcb1e2] {
    margin-bottom: 8px;
}

.instructions-list strong[b-5nnupcb1e2] {
    color: #1b6ec2;
    font-weight: 600;
}

/* Contact Card */
.contact-card[b-5nnupcb1e2] {
    background: linear-gradient(135deg, #1b6ec2 0%, #264a8f 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(27, 110, 194, 0.25);
    color: white;
}

.contact-header[b-5nnupcb1e2] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-icon[b-5nnupcb1e2] {
    font-size: 28px;
}

.contact-header h3[b-5nnupcb1e2] {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.contact-content[b-5nnupcb1e2] {
    margin-bottom: 20px;
}

.contact-label[b-5nnupcb1e2] {
    font-size: 14px;
    opacity: 0.9;
    margin: 0 0 8px 0;
}

.email-link[b-5nnupcb1e2] {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: background 0.2s ease;
}

.email-link:hover[b-5nnupcb1e2] {
    background: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    color: white;
}

/* Send Email Button */
.btn-send-email[b-5nnupcb1e2] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: white;
    color: #1b6ec2;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-send-email:hover[b-5nnupcb1e2] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-send-email:active[b-5nnupcb1e2] {
    transform: translateY(0);
}

.btn-icon[b-5nnupcb1e2] {
    font-size: 20px;
}

/* Note Card */
.note-card[b-5nnupcb1e2] {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    margin-bottom: 20px;
}

.note-icon[b-5nnupcb1e2] {
    font-size: 24px;
    flex-shrink: 0;
}

.note-text[b-5nnupcb1e2] {
    margin: 0;
    color: #495057;
    font-size: 14px;
    line-height: 1.6;
}

.note-text strong[b-5nnupcb1e2] {
    color: #d39e00;
}

/* Back Button */
.btn-back-to-login[b-5nnupcb1e2] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.9);
    color: #1b6ec2;
    border: 1px solid rgba(27, 110, 194, 0.3);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-back-to-login:hover[b-5nnupcb1e2] {
    background: white;
    border-color: rgba(27, 110, 194, 0.5);
}

.btn-back-to-login span:first-child[b-5nnupcb1e2] {
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .password-reset-container[b-5nnupcb1e2] {
        padding: 16px;
    }

    .content-wrapper[b-5nnupcb1e2] {
        padding: 12px;
    }

    .password-reset-container h1[b-5nnupcb1e2] {
        font-size: 24px;
    }

    .icon-emoji[b-5nnupcb1e2] {
        font-size: 48px;
    }

    .info-card[b-5nnupcb1e2],
    .contact-card[b-5nnupcb1e2] {
        padding: 20px;
    }
}

@media (max-width: 420px) {
    .instructions-list[b-5nnupcb1e2] {
        padding-left: 20px;
        font-size: 14px;
    }

    .email-link[b-5nnupcb1e2] {
        font-size: 16px;
    }

    .btn-send-email[b-5nnupcb1e2] {
        font-size: 15px;
        padding: 12px 20px;
    }
}
/* /Pages/StartscreenPage.razor.rz.scp.css */
.startscreen[b-emgc3e0afj] {
    /* volle Höhe inkl. mobiler Viewports und Safe Areas */
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding-top: env(safe-area-inset-top, 0px);
    background:
        radial-gradient(60% 40% at 50% -10%, rgba(99,102,241,0.18), transparent),
        linear-gradient(180deg, rgba(0,0,0,0.02), transparent 40%);
}

/* Kopfbereich ganz oben */
.app-header[b-emgc3e0afj] {
    padding-top: clamp(32px, 3vh, 45px);
    display: flex;
    justify-content: center;
}

.brand[b-emgc3e0afj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.app-logo[b-emgc3e0afj] {
    width: clamp(72px, 18vw, 120px);
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}

.app-title[b-emgc3e0afj] {
    margin: 0;
    font-size: clamp(34px, 7vw, 60px);
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #6366f1 0%, #22d3ee 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
}

.app-title[b-emgc3e0afj]::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.08), transparent 60%);
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* Zentrum mit Buttons */
.center[b-emgc3e0afj] {
    padding-top: clamp(20px, 3vh, 40px);
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.btn-stack[b-emgc3e0afj] {
    width: min(420px, 92vw);
    display: grid;
    gap: 18px;
}

.btn[b-emgc3e0afj] {
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    height: 60px;
    border-radius: 16px;
    border: 0;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: transform 120ms ease, box-shadow 180ms ease, background-color 160ms ease;
}

.btn.primary[b-emgc3e0afj] {
    color: #fff;
    background: linear-gradient(135deg, #6366f1 0%, #22d3ee 100%);
    box-shadow: 0 10px 24px rgba(99,102,241,0.30), 0 4px 10px rgba(0,0,0,0.12);
}

.btn.primary:hover[b-emgc3e0afj] {
    box-shadow: 0 12px 30px rgba(99,102,241,0.38), 0 6px 14px rgba(0,0,0,0.14);
}

.btn.primary:active[b-emgc3e0afj] { 
    transform: translateY(2px) scale(0.992); 
}

.btn.outline[b-emgc3e0afj] {
    background: rgba(255,255,255,0.55);
    color: #0f172a;
    border: 2px solid rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(6px) saturate(160%);
}

:root[data-bs-theme="dark"] .btn.outline[b-emgc3e0afj] {
    background: rgba(30,41,59,0.35);
    color: #e5e7eb;
    border-color: rgba(148,163,184,0.28);
}

@media (prefers-color-scheme: dark) {
    .btn.outline[b-emgc3e0afj] {
        background: rgba(30,41,59,0.35);
        color: #e5e7eb;
        border-color: rgba(148,163,184,0.28);
    }
}

.btn.outline:hover[b-emgc3e0afj] {
    background: rgba(255,255,255,0.72);
}

:root[data-bs-theme="dark"] .btn.outline:hover[b-emgc3e0afj] {
    background: rgba(51,65,85,0.55);
}

@media (prefers-color-scheme: dark) {
    .btn.outline:hover[b-emgc3e0afj] {
        background: rgba(51,65,85,0.55);
    }
}

.btn.outline:active[b-emgc3e0afj] { 
    transform: translateY(2px) scale(0.992); 
}

/* Sponsor Logo fast volle Breite */
.sponsor-footer[b-emgc3e0afj], .meta[b-emgc3e0afj] {
    width: 100%;
    position: fixed;
    left: 0;
    z-index: 10;
}

.sponsor-footer[b-emgc3e0afj] {
    bottom: 30px;
    display: flex;
    justify-content: center;
    padding: 0;
}

.sponsor-logo[b-emgc3e0afj] {
    width: min(92vw, 780px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.28));
    opacity: 0.95;
    transition: opacity 160ms ease;
}

.sponsor-logo:hover[b-emgc3e0afj] { 
    opacity: 1; 
}

.meta[b-emgc3e0afj] {
    bottom: 0;
    text-align: center;
    font-size: 12px;
    padding: 4px 0 calc(env(safe-area-inset-bottom) + 6px);
    opacity: 0.65;
    letter-spacing: 0.4px;
    user-select: none;
}

@media (min-width: 520px) {
    .btn[b-emgc3e0afj] { height: 64px; font-size: 18px; }
    .app-logo[b-emgc3e0afj] { width: clamp(80px, 14vw, 140px); }
}

@media (max-width: 380px) {
    .app-logo[b-emgc3e0afj] { display: none; }
    .app-title[b-emgc3e0afj] { font-size: clamp(32px, 10vw, 50px); }
}
