/* /Components/Account/Pages/Login.razor.rz.scp.css */
.login-container[b-uc310je1dm] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.login-card[b-uc310je1dm] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 460px;
    width: 100%;
    overflow: hidden;
    animation: slideUp-b-uc310je1dm 0.4s ease-out;
}

@keyframes slideUp-b-uc310je1dm {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header[b-uc310je1dm] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 30px 30px;
    text-align: center;
    color: white;
}

.logo-section[b-uc310je1dm] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.login-logo[b-uc310je1dm] {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.login-header h1[b-uc310je1dm] {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.subtitle[b-uc310je1dm] {
    margin: 8px 0 0;
    font-size: 15px;
    opacity: 0.95;
    font-weight: 400;
}

.login-body[b-uc310je1dm] {
    padding: 35px 30px 30px;
}

.form-group[b-uc310je1dm] {
    margin-bottom: 20px;
}

.form-label[b-uc310je1dm] {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #2d3748;
}

.form-control[b-uc310je1dm] {
    padding: 14px;
    height: 48px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s ease;
    width: 100%;
}

.form-control:focus[b-uc310je1dm] {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.form-control[b-uc310je1dm]::placeholder {
    color: #cbd5e0;
}

.validation-error[b-uc310je1dm] {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #e53e3e;
    font-weight: 500;
}

.validation-summary[b-uc310je1dm] {
    background-color: #fff5f5;
    border: 1px solid #feb2b2;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-options[b-uc310je1dm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 10px;
}

.remember-me[b-uc310je1dm] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    cursor: pointer;
    font-size: 14px;
    color: #4a5568;
}

.remember-me .form-check-input[b-uc310je1dm] {
    margin: 0;
    cursor: pointer;
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e0;
    border-radius: 4px;
}

.remember-me .form-check-input:checked[b-uc310je1dm] {
    background-color: #667eea;
    border-color: #667eea;
}

.forgot-password[b-uc310je1dm] {
    font-size: 14px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.forgot-password:hover[b-uc310je1dm] {
    color: #5568d3;
    text-decoration: underline;
}

.btn-login[b-uc310je1dm] {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-login:hover[b-uc310je1dm] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.btn-login:active[b-uc310je1dm] {
    transform: translateY(0);
}

.btn-login svg[b-uc310je1dm] {
    transition: transform 0.2s ease;
}

.btn-login:hover svg[b-uc310je1dm] {
    transform: translateX(4px);
}

.divider[b-uc310je1dm] {
    position: relative;
    text-align: center;
    margin: 28px 0;
}

.divider[b-uc310je1dm]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.divider span[b-uc310je1dm] {
    position: relative;
    background: white;
    padding: 0 16px;
    font-size: 13px;
    color: #a0aec0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-passkey[b-uc310je1dm] {
    width: 100%;
    height: 48px;
    background: white;
    border: 2px solid #667eea;
    border-radius: 8px;
    color: #667eea;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-passkey:hover[b-uc310je1dm] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

.btn-passkey:active[b-uc310je1dm] {
    transform: translateY(0);
}

/* External login section */
[b-uc310je1dm] .external-login-section {
    margin-top: 20px;
    padding: 0 30px 30px;
}

[b-uc310je1dm] .external-login-section h3 {
    font-size: 14px;
    color: #4a5568;
    text-align: center;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 480px) {
    .login-card[b-uc310je1dm] {
        margin: 0;
        border-radius: 0;
        min-height: 100vh;
    }

    .login-header[b-uc310je1dm] {
        padding: 30px 20px 25px;
    }

    .login-body[b-uc310je1dm] {
        padding: 25px 20px;
    }

    .form-options[b-uc310je1dm] {
        flex-direction: column;
        align-items: flex-start;
    }
    
    [b-uc310je1dm] .external-login-section {
        padding: 0 20px 30px;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .login-card[b-uc310je1dm] {
        background: #1a202c;
        color: #e2e8f0;
    }

    .login-body[b-uc310je1dm] {
        background: #1a202c;
    }

    .form-label[b-uc310je1dm] {
        color: #e2e8f0;
    }

    .form-control[b-uc310je1dm] {
        background: #2d3748;
        border-color: #4a5568;
        color: #e2e8f0;
    }

    .form-control:focus[b-uc310je1dm] {
        border-color: #667eea;
        background: #2d3748;
    }

    .remember-me[b-uc310je1dm] {
        color: #cbd5e0;
    }

    .btn-passkey[b-uc310je1dm] {
        background: #2d3748;
        border-color: #667eea;
        color: #a0aec0;
    }

    .btn-passkey:hover[b-uc310je1dm] {
        background: #667eea;
        color: white;
    }

    .divider[b-uc310je1dm]::before {
        background: #4a5568;
    }

    .divider span[b-uc310je1dm] {
        background: #1a202c;
    }
}
/* /Components/Account/Pages/Register.razor.rz.scp.css */
.register-container[b-4al9r0d3lo] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.register-card[b-4al9r0d3lo] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 460px;
    width: 100%;
    overflow: hidden;
    animation: slideUp-b-4al9r0d3lo 0.4s ease-out;
}

@keyframes slideUp-b-4al9r0d3lo {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.register-header[b-4al9r0d3lo] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 30px 30px;
    text-align: center;
    color: white;
}

.logo-section[b-4al9r0d3lo] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.register-logo[b-4al9r0d3lo] {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.register-header h1[b-4al9r0d3lo] {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.subtitle[b-4al9r0d3lo] {
    margin: 8px 0 0;
    font-size: 15px;
    opacity: 0.95;
    font-weight: 400;
}

.register-body[b-4al9r0d3lo] {
    padding: 35px 30px 30px;
}

.form-group[b-4al9r0d3lo] {
    margin-bottom: 20px;
}

.form-label[b-4al9r0d3lo] {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #2d3748;
}

.input-with-icon[b-4al9r0d3lo] {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon svg[b-4al9r0d3lo] {
    position: absolute;
    left: 14px;
    color: #a0aec0;
    pointer-events: none;
    z-index: 1;
}

.input-with-icon .form-control[b-4al9r0d3lo] {
    padding-left: 44px;
    height: 48px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s ease;
    width: 100%;
}

.input-with-icon .form-control:focus[b-4al9r0d3lo] {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.input-with-icon .form-control[b-4al9r0d3lo]::placeholder {
    color: #cbd5e0;
}

.validation-error[b-4al9r0d3lo] {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #e53e3e;
    font-weight: 500;
}

.validation-summary[b-4al9r0d3lo] {
    background-color: #fff5f5;
    border: 1px solid #feb2b2;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
}

.btn-register[b-4al9r0d3lo] {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    margin-top: 24px;
}

.btn-register:hover[b-4al9r0d3lo] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.btn-register:active[b-4al9r0d3lo] {
    transform: translateY(0);
}

.divider[b-4al9r0d3lo] {
    position: relative;
    text-align: center;
    margin: 28px 0;
}

.divider[b-4al9r0d3lo]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.divider span[b-4al9r0d3lo] {
    position: relative;
    background: white;
    padding: 0 16px;
    font-size: 13px;
    color: #a0aec0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.register-footer[b-4al9r0d3lo] {
    background: #f7fafc;
    padding: 24px 30px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.register-footer p[b-4al9r0d3lo] {
    margin: 0;
    font-size: 14px;
    color: #4a5568;
}

.login-link[b-4al9r0d3lo] {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.login-link:hover[b-4al9r0d3lo] {
    color: #5568d3;
    text-decoration: underline;
}

/* External login section */
[b-4al9r0d3lo] .external-login-section {
    margin-top: 0;
}

[b-4al9r0d3lo] .external-login-section h3 {
    font-size: 14px;
    color: #4a5568;
    text-align: center;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 480px) {
    .register-card[b-4al9r0d3lo] {
        margin: 0;
        border-radius: 0;
        min-height: 100vh;
    }

    .register-header[b-4al9r0d3lo] {
        padding: 30px 20px 25px;
    }

    .register-body[b-4al9r0d3lo] {
        padding: 25px 20px;
    }

    .register-footer[b-4al9r0d3lo] {
        padding: 20px;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .register-card[b-4al9r0d3lo] {
        background: #1a202c;
        color: #e2e8f0;
    }

    .register-body[b-4al9r0d3lo] {
        background: #1a202c;
    }

    .form-label[b-4al9r0d3lo] {
        color: #e2e8f0;
    }

    .input-with-icon .form-control[b-4al9r0d3lo] {
        background: #2d3748;
        border-color: #4a5568;
        color: #e2e8f0;
    }

    .input-with-icon .form-control:focus[b-4al9r0d3lo] {
        border-color: #667eea;
        background: #2d3748;
    }

    .register-footer[b-4al9r0d3lo] {
        background: #2d3748;
        border-top-color: #4a5568;
    }

    .register-footer p[b-4al9r0d3lo] {
        color: #cbd5e0;
    }

    .divider[b-4al9r0d3lo]::before {
        background: #4a5568;
    }

    .divider span[b-4al9r0d3lo] {
        background: #1a202c;
    }
}
/* /Components/Account/Shared/ExternalLoginPicker.razor.rz.scp.css */
.external-login-section[b-ywmfkqwjj1] {
    margin-top: 20px;
}

.external-login-section .divider[b-ywmfkqwjj1] {
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.external-login-section .divider[b-ywmfkqwjj1]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.external-login-section .divider span[b-ywmfkqwjj1] {
    position: relative;
    background: white;
    padding: 0 16px;
    font-size: 13px;
    color: #a0aec0;
    font-weight: 500;
}

.external-login-form[b-ywmfkqwjj1] {
    width: 100%;
}

.external-providers[b-ywmfkqwjj1] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-external-provider[b-ywmfkqwjj1] {
    width: 100%;
    height: 48px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    color: #4a5568;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}

.btn-external-provider:hover[b-ywmfkqwjj1] {
    border-color: #667eea;
    background: #f7fafc;
    color: #667eea;
}

.btn-external-provider:active[b-ywmfkqwjj1] {
    transform: scale(0.98);
}

/* Support for multiple providers in a grid on larger screens */
@media (min-width: 480px) {
    .external-providers[b-ywmfkqwjj1] {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-7cx4ci3cdv] {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

main[b-7cx4ci3cdv] {
    flex: 1;
    margin: 0;
}

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

.top-row[b-7cx4ci3cdv] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    border-left: none;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
    margin: 0;
    gap: 1rem;
}

    .top-row[b-7cx4ci3cdv]  a, .top-row[b-7cx4ci3cdv]  .btn-link {
        white-space: nowrap;
        margin-left: 0;
        text-decoration: none;
        color: #006bb7;
    }

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

    .top-row[b-7cx4ci3cdv]  form {
        display: inline;
        margin: 0;
    }

    .top-row[b-7cx4ci3cdv]  .btn-link {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        font-size: inherit;
        font-family: inherit;
    }

@media (max-width: 640.98px) {
    .top-row[b-7cx4ci3cdv] {
        justify-content: space-between;
        gap: 0.5rem;
    }
}

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

    .sidebar[b-7cx4ci3cdv] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
        flex-shrink: 0;
    }

    main[b-7cx4ci3cdv] {
        flex: 1;
        min-width: 0;
    }

    .top-row[b-7cx4ci3cdv] {
        position: sticky;
        top: 0;
        z-index: 1;
        border-left: none;
    }

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

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

#blazor-error-ui[b-7cx4ci3cdv] {
    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-7cx4ci3cdv] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-cess1a7z08] {
    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-cess1a7z08] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-cess1a7z08] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
    padding: 0.75rem 1rem !important;
    display: flex;
    align-items: center;
}

.navbar-brand[b-cess1a7z08] {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
}

.navbar-brand:hover[b-cess1a7z08] {
    color: white;
    text-decoration: none;
}

.brand-logo[b-cess1a7z08] {
    height: 2rem;
    width: auto;
}

.bi[b-cess1a7z08] {
    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-cess1a7z08] {
    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-laptop-nav-menu[b-cess1a7z08] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath fill='white' d='M128 96C92.7 96 64 124.7 64 160L64 400L128 400L128 160L512 160L512 400L576 400L576 160C576 124.7 547.3 96 512 96L128 96zM19.2 448C8.6 448 0 456.6 0 467.2C0 509.6 34.4 544 76.8 544L563.2 544C605.6 544 640 509.6 640 467.2C640 456.6 631.4 448 620.8 448L19.2 448z'/%3E%3C/svg%3E");
}

.bi-window-nav-menu[b-cess1a7z08] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M2.5 4a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m2-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m1 .5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1'/%3E%3Cpath d='M2 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2zm13 2v2H1V3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1M2 14a1 1 0 0 1-1-1V6h14v7a1 1 0 0 1-1 1z'/%3E%3C/svg%3E");
}

.bi-people-nav-menu[b-cess1a7z08] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M15 14s1 0 1-1-1-4-5-4-5 3-5 4 1 1 1 1zm-7.978-1L7 12.996c.001-.264.167-1.03.76-1.72C8.312 10.629 9.282 10 11 10c1.717 0 2.687.63 3.24 1.276.593.69.758 1.457.76 1.72l-.008.002-.014.002zM11 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4m3-2a3 3 0 1 1-6 0 3 3 0 0 1 6 0M6.936 9.28a6 6 0 0 0-1.23-.247A7 7 0 0 0 5 9c-4 0-5 3-5 4q0 1 1 1h4.216A2.24 2.24 0 0 1 5 13c0-1.01.377-2.042 1.09-2.904.243-.294.526-.569.846-.816M4.92 10A5.5 5.5 0 0 0 4 13H1c0-.26.164-1.03.76-1.724.545-.636 1.492-1.256 3.16-1.275ZM1.5 5.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0m3-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4'/%3E%3C/svg%3E");
}

.bi-bar-chart-fill-nav-menu[b-cess1a7z08] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-bar-chart-fill' viewBox='0 0 16 16'%3E%3Cpath d='M1 11a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-3zm5-4a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V7zm5-5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V2z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-cess1a7z08] {
    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");
}

.nav-section-divider[b-cess1a7z08] {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem 1rem;
}

.nav-section-title[b-cess1a7z08] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.5rem;
    margin-top: 0.5rem;
}

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

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

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

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

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

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

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

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

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

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

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-2zukxb9qqt],
.components-reconnect-repeated-attempt-visible[b-2zukxb9qqt],
.components-reconnect-failed-visible[b-2zukxb9qqt],
.components-pause-visible[b-2zukxb9qqt],
.components-resume-failed-visible[b-2zukxb9qqt],
.components-rejoining-animation[b-2zukxb9qqt] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-2zukxb9qqt],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-2zukxb9qqt],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-2zukxb9qqt],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-2zukxb9qqt],
#components-reconnect-modal.components-reconnect-retrying[b-2zukxb9qqt],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-2zukxb9qqt],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-2zukxb9qqt],
#components-reconnect-modal.components-reconnect-failed[b-2zukxb9qqt],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-2zukxb9qqt] {
    display: block;
}


#components-reconnect-modal[b-2zukxb9qqt] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-2zukxb9qqt 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-2zukxb9qqt 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-2zukxb9qqt 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-2zukxb9qqt]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-2zukxb9qqt 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-2zukxb9qqt {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-2zukxb9qqt {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-2zukxb9qqt {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-2zukxb9qqt] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-2zukxb9qqt] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-2zukxb9qqt] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-2zukxb9qqt] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-2zukxb9qqt] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-2zukxb9qqt] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-2zukxb9qqt] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-2zukxb9qqt 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-2zukxb9qqt] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-2zukxb9qqt {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
