/* _content/WebPortal/Features/Dashboard/DashboardPage.razor.rz.scp.css */
.dashboard-container[b-sg3dx2wfo0] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    min-height: calc(100vh - 80px);
}

/* User Profile Section */
.user-profile-section[b-sg3dx2wfo0] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.25);
}

.profile-card[b-sg3dx2wfo0] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.profile-avatar[b-sg3dx2wfo0] {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.profile-info h2[b-sg3dx2wfo0] {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.profile-subtitle[b-sg3dx2wfo0] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin: 0;
}

.roles-display[b-sg3dx2wfo0] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.role-badge-large[b-sg3dx2wfo0] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.role-badge-large i[b-sg3dx2wfo0] {
    font-size: 1.125rem;
}

.role-badge-large.event-admin[b-sg3dx2wfo0] {
    color: #5c6bc0;
    border: 2px solid #5c6bc0;
}

.role-badge-large.judge[b-sg3dx2wfo0] {
    color: #ff9800;
    border: 2px solid #ff9800;
}

.role-badge-large.participant[b-sg3dx2wfo0] {
    color: #4caf50;
    border: 2px solid #4caf50;
}

.role-badge-large.viewer[b-sg3dx2wfo0] {
    color: #9c27b0;
    border: 2px solid #9c27b0;
}

/* Section Headers */
.section-header[b-sg3dx2wfo0] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 3rem 0 1.5rem 0;
}

.section-icon[b-sg3dx2wfo0] {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.section-icon.event-admin-bg[b-sg3dx2wfo0] {
    background: linear-gradient(135deg, #5c6bc0 0%, #3949ab 100%);
}

.section-icon.judge-bg[b-sg3dx2wfo0] {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.section-icon.participant-bg[b-sg3dx2wfo0] {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
}

.section-icon.events-bg[b-sg3dx2wfo0] {
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
}

.section-header h2[b-sg3dx2wfo0] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.section-header p[b-sg3dx2wfo0] {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin: 0.25rem 0 0 0;
}

/* Feature Cards */
.feature-cards[b-sg3dx2wfo0] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-cards.compact[b-sg3dx2wfo0] {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-card[b-sg3dx2wfo0] {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card[b-sg3dx2wfo0]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #e0e0e0;
    transition: all 0.3s;
}

.feature-card:hover[b-sg3dx2wfo0] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-card.event-admin-card[b-sg3dx2wfo0]::before {
    background: linear-gradient(135deg, #5c6bc0 0%, #3949ab 100%);
}

.feature-card.judge-card[b-sg3dx2wfo0]::before {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.feature-card.participant-card[b-sg3dx2wfo0]::before {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
}

.feature-card.events-card[b-sg3dx2wfo0]::before {
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
}

.feature-icon[b-sg3dx2wfo0] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    background: #f5f7fa;
    color: #5c6bc0;
    transition: all 0.3s;
}

.feature-card.event-admin-card .feature-icon[b-sg3dx2wfo0] {
    color: #5c6bc0;
}

.feature-card.judge-card .feature-icon[b-sg3dx2wfo0] {
    color: #ff9800;
}

.feature-card.participant-card .feature-icon[b-sg3dx2wfo0] {
    color: #4caf50;
}

.feature-card.events-card .feature-icon[b-sg3dx2wfo0] {
    color: #00bcd4;
}

.feature-card:hover .feature-icon[b-sg3dx2wfo0] {
    transform: scale(1.1);
}

.feature-content[b-sg3dx2wfo0] {
    flex: 1;
}

.feature-content h3[b-sg3dx2wfo0] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.feature-content p[b-sg3dx2wfo0] {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
}

.feature-stats[b-sg3dx2wfo0] {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.stat-badge[b-sg3dx2wfo0] {
    padding: 0.35rem 0.75rem;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.stat-badge.warning[b-sg3dx2wfo0] {
    background: #fff3e0;
    color: #f57c00;
}

.feature-badge[b-sg3dx2wfo0] {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

.feature-arrow[b-sg3dx2wfo0] {
    font-size: 1.5rem;
    color: #bdc3c7;
    transition: all 0.3s;
}

.feature-card:hover .feature-arrow[b-sg3dx2wfo0] {
    color: #5c6bc0;
    transform: translateX(4px);
}

/* Info Banners */
.info-banner[b-sg3dx2wfo0] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.info-banner i[b-sg3dx2wfo0] {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-banner strong[b-sg3dx2wfo0] {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.info-banner p[b-sg3dx2wfo0] {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.viewer-banner[b-sg3dx2wfo0] {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    color: #4a148c;
    border: 2px solid #9c27b0;
}

/* Call to Action Section */
.cta-section[b-sg3dx2wfo0] {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.cta-card[b-sg3dx2wfo0] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.cta-icon[b-sg3dx2wfo0] {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.cta-content[b-sg3dx2wfo0] {
    flex: 1;
    color: white;
}

.cta-content h3[b-sg3dx2wfo0] {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.cta-content p[b-sg3dx2wfo0] {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
}

.btn-cta[b-sg3dx2wfo0] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover[b-sg3dx2wfo0] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-cards[b-sg3dx2wfo0] {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .dashboard-container[b-sg3dx2wfo0] {
        padding: 1.5rem 1rem;
    }

    .user-profile-section[b-sg3dx2wfo0] {
        padding: 1.25rem 1rem;
    }

    .profile-card[b-sg3dx2wfo0] {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .profile-avatar[b-sg3dx2wfo0] {
        width: 45px;
        height: 45px;
        font-size: 1.75rem;
    }

    .profile-info h2[b-sg3dx2wfo0] {
        font-size: 1.125rem;
    }

    .profile-subtitle[b-sg3dx2wfo0] {
        font-size: 0.8rem;
    }

    .roles-display[b-sg3dx2wfo0] {
        justify-content: flex-start;
    }

    .section-header[b-sg3dx2wfo0] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .feature-cards[b-sg3dx2wfo0] {
        grid-template-columns: 1fr;
    }

    .feature-card[b-sg3dx2wfo0] {
        flex-direction: column;
        text-align: center;
    }

    .feature-arrow[b-sg3dx2wfo0] {
        display: none;
    }

    .cta-card[b-sg3dx2wfo0] {
        flex-direction: column;
        text-align: center;
    }

    .cta-content h3[b-sg3dx2wfo0] {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .user-profile-section[b-sg3dx2wfo0] {
        padding: 1rem 0.875rem;
        border-radius: 12px;
    }

    .profile-avatar[b-sg3dx2wfo0] {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .profile-info h2[b-sg3dx2wfo0] {
        font-size: 1rem;
    }

    .profile-subtitle[b-sg3dx2wfo0] {
        font-size: 0.75rem;
    }

    .role-badge-large[b-sg3dx2wfo0] {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    .role-badge-large i[b-sg3dx2wfo0] {
        font-size: 1rem;
    }

    .section-header h2[b-sg3dx2wfo0] {
        font-size: 1.5rem;
    }

    .feature-content h3[b-sg3dx2wfo0] {
        font-size: 1rem;
    }
}
/* _content/WebPortal/Features/Events/ApplyAsJudgePage.razor.rz.scp.css */
.judge-application-container[b-7ms73opbsn] {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.application-header h1[b-7ms73opbsn] {
    color: #1a237e;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-header[b-7ms73opbsn] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #1a237e;
}

.card-header h5[b-7ms73opbsn] {
    margin: 0;
    color: #1a237e;
    font-weight: 600;
}

.document-upload-item[b-7ms73opbsn] {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.experience-item[b-7ms73opbsn] {
    background: #f8f9fa;
}

.form-text[b-7ms73opbsn] {
    font-size: 0.875rem;
    color: #6c757d;
}
/* _content/WebPortal/Features/Events/CreateEventPage.razor.rz.scp.css */
.create-event-container[b-cbhzvl1yjj] {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.page-header h1[b-cbhzvl1yjj] {
    color: #1a237e;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-header[b-cbhzvl1yjj] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #1a237e;
}

.card-header h5[b-cbhzvl1yjj] {
    margin: 0;
    color: #1a237e;
    font-weight: 600;
}
/* _content/WebPortal/Features/Events/EventListPage.razor.rz.scp.css */
.events-container[b-y03dwdgcui] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.events-header[b-y03dwdgcui] {
    text-align: center;
    margin-bottom: 2rem;
}

.events-header h1[b-y03dwdgcui] {
    color: #1a237e;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.events-header .lead[b-y03dwdgcui] {
    color: #666;
}

.filters-section .card-body[b-y03dwdgcui] {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.events-grid[b-y03dwdgcui] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.event-card[b-y03dwdgcui] {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e0e0e0;
}

.event-card:hover[b-y03dwdgcui] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.event-card .card-header[b-y03dwdgcui] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e0e0e0;
    padding: 0.75rem 1rem;
}

.event-card .card-title[b-y03dwdgcui] {
    color: #1a237e;
    font-weight: 600;
    font-size: 1.1rem;
}

.event-card .card-text[b-y03dwdgcui] {
    font-size: 0.9rem;
    line-height: 1.5;
}

.event-details[b-y03dwdgcui] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item[b-y03dwdgcui] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

.detail-item i[b-y03dwdgcui] {
    color: #1a237e;
    width: 16px;
}

.event-card .card-footer[b-y03dwdgcui] {
    background: transparent;
    border-top: 1px solid #e0e0e0;
    font-size: 0.875rem;
}

.badge.bg-published[b-y03dwdgcui] {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
}

.badge.bg-live[b-y03dwdgcui] {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    animation: pulse-b-y03dwdgcui 2s infinite;
}

.badge.bg-closed[b-y03dwdgcui] {
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%);
}

@keyframes pulse-b-y03dwdgcui {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.create-event-cta .alert[b-y03dwdgcui] {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 1px solid #1a237e;
}

@media (max-width: 768px) {
    .events-grid[b-y03dwdgcui] {
        grid-template-columns: 1fr;
    }

    .events-header h1[b-y03dwdgcui] {
        font-size: 2rem;
    }
}
/* _content/WebPortal/Shared/Components/UnityAppBanner.razor.rz.scp.css */
.unity-app-banner[b-8ca8szegrc] {
    background: linear-gradient(135deg, #e1f5fe 0%, #b3e5fc 100%);
    border: 2px solid #03a9f4;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(3, 169, 244, 0.15);
}

.banner-icon[b-8ca8szegrc] {
    width: 50px;
    height: 50px;
    background: rgba(3, 169, 244, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-icon i[b-8ca8szegrc] {
    font-size: 1.75rem;
    color: #01579b;
}

.banner-content[b-8ca8szegrc] {
    flex: 1;
}

.banner-content strong[b-8ca8szegrc] {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #01579b;
    margin-bottom: 0.375rem;
}

.banner-content p[b-8ca8szegrc] {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    color: #01579b;
    opacity: 0.85;
}

.download-links[b-8ca8szegrc] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.store-link[b-8ca8szegrc] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1rem;
    background: white;
    border: 2px solid #03a9f4;
    border-radius: 8px;
    text-decoration: none;
    color: #01579b;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.store-link:hover[b-8ca8szegrc] {
    background: #03a9f4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(3, 169, 244, 0.3);
}

.store-link i[b-8ca8szegrc] {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.store-link div[b-8ca8szegrc] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.store-name-small[b-8ca8szegrc] {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.8;
}

.store-name[b-8ca8szegrc] {
    font-size: 0.875rem;
    font-weight: 700;
}

.store-link.google-play i[b-8ca8szegrc] {
    color: #3ddc84;
}

.store-link.google-play:hover i[b-8ca8szegrc] {
    color: white;
}

.store-link.app-store i[b-8ca8szegrc] {
    color: #000000;
}

.store-link.app-store:hover i[b-8ca8szegrc] {
    color: white;
}

.store-link.webgl i[b-8ca8szegrc] {
    color: #667eea;
}

.store-link.webgl:hover i[b-8ca8szegrc] {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .unity-app-banner[b-8ca8szegrc] {
        flex-direction: column;
        padding: 1rem;
    }

    .banner-icon[b-8ca8szegrc] {
        width: 45px;
        height: 45px;
    }

    .banner-icon i[b-8ca8szegrc] {
        font-size: 1.5rem;
    }

    .banner-content strong[b-8ca8szegrc] {
        font-size: 1rem;
    }

    .banner-content p[b-8ca8szegrc] {
        font-size: 0.85rem;
    }

    .download-links[b-8ca8szegrc] {
        flex-direction: column;
        width: 100%;
    }

    .store-link[b-8ca8szegrc] {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .unity-app-banner[b-8ca8szegrc] {
        padding: 0.875rem;
    }

    .banner-icon[b-8ca8szegrc] {
        width: 40px;
        height: 40px;
    }

    .banner-icon i[b-8ca8szegrc] {
        font-size: 1.25rem;
    }

    .store-link[b-8ca8szegrc] {
        padding: 0.5rem 0.75rem;
    }

    .store-link i[b-8ca8szegrc] {
        font-size: 1.25rem;
    }

    .store-name-small[b-8ca8szegrc] {
        font-size: 0.6rem;
    }

    .store-name[b-8ca8szegrc] {
        font-size: 0.8rem;
    }
}
/* _content/WebPortal/Shared/Layout/MainLayout.razor.rz.scp.css */
.page[b-831rnxlujr] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-831rnxlujr] {
    flex: 1;
}

.sidebar[b-831rnxlujr] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-831rnxlujr] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-831rnxlujr]  a, .top-row[b-831rnxlujr]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-831rnxlujr]  a:hover, .top-row[b-831rnxlujr]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-831rnxlujr]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-831rnxlujr] {
        justify-content: space-between;
    }

    .top-row[b-831rnxlujr]  a, .top-row[b-831rnxlujr]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-831rnxlujr] {
        flex-direction: row;
    }

    .sidebar[b-831rnxlujr] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-831rnxlujr] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-831rnxlujr]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-831rnxlujr], article[b-831rnxlujr] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-831rnxlujr] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-831rnxlujr] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/WebPortal/Shared/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-496xboesme] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-496xboesme] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-496xboesme] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-496xboesme] {
    font-size: 1.1rem;
}

.user-avatar[b-496xboesme] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.nav-section-header[b-496xboesme] {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}

.bi[b-496xboesme] {
    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-496xboesme] {
    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-496xboesme] {
    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-496xboesme] {
    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");
}

.bi-speedometer2[b-496xboesme] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-speedometer2' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5V6a.5.5 0 0 1-1 0V4.5A.5.5 0 0 1 8 4zM3.732 5.732a.5.5 0 0 1 .707 0l.915.914a.5.5 0 1 1-.708.708l-.914-.915a.5.5 0 0 1 0-.707zM2 10a.5.5 0 0 1 .5-.5h1.586a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 10zm9.5 0a.5.5 0 0 1 .5-.5h1.5a.5.5 0 0 1 0 1H12a.5.5 0 0 1-.5-.5zm.754-4.246a.389.389 0 0 0-.527-.02L7.547 9.31a.91.91 0 1 0 1.302 1.258l3.434-4.297a.389.389 0 0 0-.029-.518z'/%3E%3Cpath fill-rule='evenodd' d='M0 10a8 8 0 1 1 15.547 2.661c-.442 1.253-1.845 1.602-2.932 1.25C11.309 13.488 9.475 13 8 13c-1.474 0-3.31.488-4.615.911-1.087.352-2.49.003-2.932-1.25A7.988 7.988 0 0 1 0 10zm8-7a7 7 0 0 0-6.603 9.329c.203.575.923.876 1.68.63C4.397 12.533 6.358 12 8 12s3.604.532 4.923.96c.757.245 1.477-.056 1.68-.631A7 7 0 0 0 8 3z'/%3E%3C/svg%3E");
}

.bi-exclamation-triangle-fill[b-496xboesme] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffc107' class='bi bi-exclamation-triangle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M8.982 1.566a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767L8.982 1.566zM8 5c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995A.905.905 0 0 1 8 5zm.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2z'/%3E%3C/svg%3E");
}

.bi-calendar-event[b-496xboesme] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-calendar-event' viewBox='0 0 16 16'%3E%3Cpath d='M11 6.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1z'/%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
}

.bi-shield-check[b-496xboesme] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-shield-check' viewBox='0 0 16 16'%3E%3Cpath d='M5.338 1.59a61.44 61.44 0 0 0-2.837.856.481.481 0 0 0-.328.39c-.554 4.157.726 7.19 2.253 9.188a10.725 10.725 0 0 0 2.287 2.233c.346.244.652.42.893.533.12.057.218.095.293.118a.55.55 0 0 0 .101.025.615.615 0 0 0 .1-.025c.076-.023.174-.061.294-.118.24-.113.547-.29.893-.533a10.726 10.726 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39c-.651-.213-1.75-.56-2.837-.855C9.552 1.29 8.531 1.067 8 1.067c-.53 0-1.552.223-2.662.524zM5.072.56C6.157.265 7.31 0 8 0s1.843.265 2.928.56c1.11.3 2.229.655 2.887.87a1.54 1.54 0 0 1 1.044 1.262c.596 4.477-.787 7.795-2.465 9.99a11.775 11.775 0 0 1-2.517 2.453 7.159 7.159 0 0 1-1.048.625c-.28.132-.581.24-.829.24s-.548-.108-.829-.24a7.158 7.158 0 0 1-1.048-.625 11.777 11.777 0 0 1-2.517-2.453C1.928 10.487.545 7.169 1.141 2.692A1.54 1.54 0 0 1 2.185 1.43 62.456 62.456 0 0 1 5.072.56z'/%3E%3Cpath d='M10.854 5.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 7.793l2.646-2.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.bi-trophy[b-496xboesme] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-trophy' viewBox='0 0 16 16'%3E%3Cpath d='M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935zM3.504 1c.007.517.026 1.006.056 1.469.13 2.028.457 3.546.87 4.667C5.294 9.48 6.484 10 7 10a.5.5 0 0 1 .5.5v2.61a1 1 0 0 1-.757.97l-1.426.356a.5.5 0 0 0-.179.085L4.5 15h7l-.638-.479a.501.501 0 0 0-.18-.085l-1.425-.356a1 1 0 0 1-.757-.97V10.5A.5.5 0 0 1 9 10c.516 0 1.706-.52 2.57-2.864.413-1.12.74-2.64.87-4.667.03-.463.049-.952.056-1.469H3.504z'/%3E%3C/svg%3E");
}

.bi-plus-circle[b-496xboesme] {
    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-circle' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.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 8 4z'/%3E%3C/svg%3E");
}

.bi-clipboard-check[b-496xboesme] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-clipboard-check' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M10.854 7.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 9.793l2.646-2.647a.5.5 0 0 1 .708 0z'/%3E%3Cpath d='M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1v-1z'/%3E%3Cpath d='M9.5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5h3zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0h-3z'/%3E%3C/svg%3E");
}

.bi-flag[b-496xboesme] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-flag' viewBox='0 0 16 16'%3E%3Cpath d='M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001M14 1.221c-.22.078-.48.167-.766.255-.81.252-1.872.523-2.734.523-.886 0-1.592-.286-2.203-.534l-.008-.003C7.662 1.21 7.139 1 6.5 1c-.669 0-1.606.229-2.415.478A21.294 21.294 0 0 0 3 1.845v6.433c.22-.078.48-.167.766-.255C4.576 7.77 5.638 7.5 6.5 7.5c.847 0 1.548.28 2.158.525l.028.01C9.32 8.29 9.86 8.5 10.5 8.5c.668 0 1.606-.229 2.415-.478A21.317 21.317 0 0 0 14 7.655V1.222z'/%3E%3C/svg%3E");
}

.bi-person-plus[b-496xboesme] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2317a2b8' class='bi bi-person-plus' viewBox='0 0 16 16'%3E%3Cpath d='M6 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm4 8c0 1-1 1-1 1H1s-1 0-1-1 1-4 6-4 6 3 6 4zm-1-.004c-.001-.246-.154-.986-.832-1.664C9.516 10.68 8.289 10 6 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10z'/%3E%3Cpath fill-rule='evenodd' d='M13.5 5a.5.5 0 0 1 .5.5V7h1.5a.5.5 0 0 1 0 1H14v1.5a.5.5 0 0 1-1 0V8h-1.5a.5.5 0 0 1 0-1H13V5.5a.5.5 0 0 1 .5-.5z'/%3E%3C/svg%3E");
}

.bi-search[b-496xboesme] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
}

.bi-person[b-496xboesme] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10z'/%3E%3C/svg%3E");
}

.bi-house-door-fill[b-496xboesme] {
    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");
}

.nav-item[b-496xboesme] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-496xboesme] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-496xboesme] {
        padding-bottom: 1rem;
    }

    .nav-item[b-496xboesme]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-496xboesme]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-496xboesme]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-496xboesme] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-496xboesme] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-496xboesme] {
        display: none;
    }

    .nav-scrollable[b-496xboesme] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
