/* /Components/Layout/AdminLayout.razor.rz.scp.css */
.admin-container[b-fuertrcgh1] {
    display: flex;
    min-height: 100vh;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
}

.sidebar[b-fuertrcgh1] {
    width: 280px;
    background-color: #ffffff;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.logo[b-fuertrcgh1] {
    padding: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.logo h2[b-fuertrcgh1] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

nav[b-fuertrcgh1] {
    flex: 1;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

nav a[b-fuertrcgh1] {
    display: block;
    padding: 12px 16px;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
}

nav a:hover[b-fuertrcgh1], nav a.active[b-fuertrcgh1] {
    background-color: #f1f5f9;
    color: #0f172a;
}

.sidebar-footer[b-fuertrcgh1] {
    padding: 24px;
    border-top: 1px solid #e2e8f0;
}

.logout-btn[b-fuertrcgh1] {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.logout-btn:hover[b-fuertrcgh1] {
    background: #f1f5f9;
    color: #0f172a;
}

.main-content[b-fuertrcgh1] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.topbar[b-fuertrcgh1] {
    height: 72px;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    padding: 0 32px;
}

.topbar-title[b-fuertrcgh1] {
    font-size: 1.25rem;
    font-weight: 600;
}

.page-content[b-fuertrcgh1] {
    padding: 32px;
    flex: 1;
    overflow-y: auto;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */

/* /Components/Layout/NavMenu.razor.rz.scp.css */

/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-qtzh7vf9zz],
.components-reconnect-repeated-attempt-visible[b-qtzh7vf9zz],
.components-reconnect-failed-visible[b-qtzh7vf9zz],
.components-pause-visible[b-qtzh7vf9zz],
.components-resume-failed-visible[b-qtzh7vf9zz],
.components-rejoining-animation[b-qtzh7vf9zz] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-qtzh7vf9zz],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-qtzh7vf9zz],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-qtzh7vf9zz],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-qtzh7vf9zz],
#components-reconnect-modal.components-reconnect-retrying[b-qtzh7vf9zz],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-qtzh7vf9zz],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-qtzh7vf9zz],
#components-reconnect-modal.components-reconnect-failed[b-qtzh7vf9zz],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-qtzh7vf9zz] {
    display: block;
}


#components-reconnect-modal[b-qtzh7vf9zz] {
    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-qtzh7vf9zz 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-qtzh7vf9zz 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-qtzh7vf9zz 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-qtzh7vf9zz]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-qtzh7vf9zz 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-qtzh7vf9zz {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-qtzh7vf9zz {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-qtzh7vf9zz {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-qtzh7vf9zz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-qtzh7vf9zz] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-qtzh7vf9zz] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-qtzh7vf9zz] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-qtzh7vf9zz] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-qtzh7vf9zz] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-qtzh7vf9zz] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-qtzh7vf9zz 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-qtzh7vf9zz] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-qtzh7vf9zz {
    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;
    }
}
/* /Components/Pages/Admin/Dashboard.razor.rz.scp.css */
.page-title[b-7klzfhgl7q] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 24px;
    color: #0f172a;
}

.table-container[b-7klzfhgl7q] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.data-table[b-7klzfhgl7q] {
    width: 100%;
    border-collapse: collapse;
}

.data-table th[b-7klzfhgl7q], .data-table td[b-7klzfhgl7q] {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.data-table th[b-7klzfhgl7q] {
    background-color: #f8fafc;
    font-weight: 600;
    color: #475569;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.data-table tbody tr:last-child td[b-7klzfhgl7q] {
    border-bottom: none;
}

.data-table tbody tr:hover[b-7klzfhgl7q] {
    background-color: #f1f5f9;
}

.font-medium[b-7klzfhgl7q] {
    font-weight: 500;
    color: #0f172a;
}

.badge[b-7klzfhgl7q] {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-primary[b-7klzfhgl7q] {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.btn-action[b-7klzfhgl7q] {
    background: none;
    border: none;
    color: #3b82f6;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
}

.btn-action:hover[b-7klzfhgl7q] {
    background-color: #eff6ff;
}

.text-danger[b-7klzfhgl7q] {
    color: #ef4444;
}

.text-danger:hover[b-7klzfhgl7q] {
    background-color: #fef2f2;
}

.admin-modal-backdrop[b-7klzfhgl7q] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.admin-modal[b-7klzfhgl7q] {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 10000;
}

.admin-modal-header[b-7klzfhgl7q] {
    padding: 24px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-modal-header h3[b-7klzfhgl7q] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.close-btn[b-7klzfhgl7q] {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
}

.close-btn:hover[b-7klzfhgl7q] {
    color: #0f172a;
}

.admin-modal-body[b-7klzfhgl7q] {
    padding: 24px;
}

.detail-grid[b-7klzfhgl7q] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.detail-item label[b-7klzfhgl7q] {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 4px;
}

.detail-item div[b-7klzfhgl7q] {
    font-weight: 500;
    color: #0f172a;
}

.message-content label[b-7klzfhgl7q] {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 8px;
}

.message-content p[b-7klzfhgl7q] {
    margin: 0;
    background-color: #f8fafc;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    line-height: 1.6;
    color: #334155;
    white-space: pre-wrap;
}
/* /Components/Pages/Admin/Login.razor.rz.scp.css */
.login-container[b-ra989qbww6] {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
}

.login-card[b-ra989qbww6] {
    background: #ffffff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.login-card h2[b-ra989qbww6] {
    margin-top: 0;
    margin-bottom: 32px;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
}

.form-group[b-ra989qbww6] {
    margin-bottom: 24px;
}

label[b-ra989qbww6] {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #475569;
}

.form-control[b-ra989qbww6] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-control:focus[b-ra989qbww6] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn[b-ra989qbww6] {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary[b-ra989qbww6] {
    background-color: #0f172a;
    color: #ffffff;
}

.btn-primary:hover[b-ra989qbww6] {
    background-color: #1e293b;
}

.w-100[b-ra989qbww6] {
    width: 100%;
}
/* /Components/Pages/Admin/Settings.razor.rz.scp.css */
.settings-container[b-k6ekhf9zow] {
    max-width: 600px;
}

.page-title[b-k6ekhf9zow] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #0f172a;
}

.settings-card[b-k6ekhf9zow] {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.settings-card h3[b-k6ekhf9zow] {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.125rem;
    font-weight: 600;
}

.description[b-k6ekhf9zow] {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.form-group[b-k6ekhf9zow] {
    margin-bottom: 20px;
}

label[b-k6ekhf9zow] {
    display: block;
    margin-bottom: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
}

.form-control[b-k6ekhf9zow] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
}

.form-control:focus[b-k6ekhf9zow] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn[b-k6ekhf9zow] {
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border: none;
}

.btn-primary[b-k6ekhf9zow] {
    background-color: #0f172a;
    color: #ffffff;
}

.btn-primary:hover[b-k6ekhf9zow] {
    background-color: #1e293b;
}

.btn-primary:disabled[b-k6ekhf9zow] {
    opacity: 0.7;
    cursor: not-allowed;
}

.alert[b-k6ekhf9zow] {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 0.875rem;
}

.alert-success[b-k6ekhf9zow] {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-danger[b-k6ekhf9zow] {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
/* /Components/Pages/Portal/Login.razor.rz.scp.css */
.portal-login[b-s0x1tf18ck] {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 74px);
    padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 82px);
    background:
        linear-gradient(120deg, rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.62)),
        url("images/hero-slide.webp") center / cover no-repeat;
}

.portal-login-panel[b-s0x1tf18ck] {
    width: min(100%, 460px);
    padding: clamp(28px, 4vw, 40px);
    border-top: 3px solid var(--brand-red, #cc1616);
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.portal-login-brand img[b-s0x1tf18ck] {
    width: 148px;
    margin-bottom: 22px;
}

.portal-login-brand .eyebrow[b-s0x1tf18ck] {
    margin-bottom: 10px;
}

.portal-login-brand h1[b-s0x1tf18ck] {
    margin: 0;
    font-size: clamp(1.55rem, 2.4vw, 1.9rem);
    line-height: 1.15;
}

.portal-login-copy[b-s0x1tf18ck] {
    margin: 12px 0 0;
    color: var(--muted, #737780);
    font-size: 0.95rem;
    line-height: 1.55;
}

.portal-login-form[b-s0x1tf18ck] {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.portal-login-form label[b-s0x1tf18ck] {
    display: grid;
    gap: 7px;
    color: var(--ink, #191919);
    font-family: var(--font-display, inherit);
    font-weight: 600;
    font-size: 0.92rem;
}

.portal-input[b-s0x1tf18ck],
.portal-login-form input[type="text"][b-s0x1tf18ck],
.portal-login-form input[type="password"][b-s0x1tf18ck],
.portal-login-form input.portal-input[b-s0x1tf18ck] {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid #d5d5d5;
    border-radius: 0;
    background: #ffffff;
    color: var(--ink, #191919);
    font: inherit;
}

.portal-login-form input:focus[b-s0x1tf18ck] {
    outline: 3px solid rgba(204, 22, 22, 0.16);
    border-color: #cc1616;
}

.portal-login-error[b-s0x1tf18ck] {
    padding: 12px 14px;
    border: 1px solid #f0b4b4;
    border-left: 3px solid #cc1616;
    background: #fff5f5;
    color: #8a1f1f;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.45;
}

.portal-login-row[b-s0x1tf18ck] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
}

.portal-login-form label.portal-remember[b-s0x1tf18ck] {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    width: auto;
    white-space: nowrap;
    color: var(--ink, #191919);
    font-family: var(--font-body, inherit);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
}

.portal-remember-input[b-s0x1tf18ck] {
    position: absolute !important;
    opacity: 0 !important;
    width: 1px !important;
    max-width: 1px !important;
    height: 1px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.portal-remember-box[b-s0x1tf18ck] {
    box-sizing: border-box;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border: 1.5px solid #bdbdbd;
    background: #ffffff;
    display: inline-grid;
    place-items: center;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.portal-remember-box[b-s0x1tf18ck]::after {
    content: "";
    width: 10px;
    height: 10px;
    transform: scale(0);
    background: #ffffff;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transition: transform 0.12s ease;
}

.portal-remember-input:checked + .portal-remember-box[b-s0x1tf18ck] {
    border-color: #cc1616;
    background: #cc1616;
}

.portal-remember-input:checked + .portal-remember-box[b-s0x1tf18ck]::after {
    transform: scale(1);
}

.portal-remember-input:focus-visible + .portal-remember-box[b-s0x1tf18ck] {
    outline: 3px solid rgba(204, 22, 22, 0.22);
    outline-offset: 2px;
}

.portal-remember-text[b-s0x1tf18ck] {
    display: inline-block;
    white-space: nowrap;
    line-height: 1.2;
    user-select: none;
}

.portal-muted-link[b-s0x1tf18ck] {
    flex-shrink: 0;
    color: var(--muted, #737780);
    font-size: 0.86rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: default;
}

.portal-login-submit[b-s0x1tf18ck] {
    width: 100%;
    margin-top: 4px;
}

.portal-login-help[b-s0x1tf18ck] {
    margin: 22px 0 0;
    color: var(--muted, #737780);
    font-size: 0.88rem;
    line-height: 1.5;
}

.portal-login-help a[b-s0x1tf18ck] {
    color: var(--brand-red, #cc1616);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.portal-back-link[b-s0x1tf18ck] {
    display: inline-block;
    margin-top: 14px;
    color: var(--ink, #191919);
    font-size: 0.86rem;
    font-weight: 600;
}

.portal-back-link:hover[b-s0x1tf18ck] {
    color: var(--brand-red, #cc1616);
}

@media (max-width: 640px) {
    .portal-login-row[b-s0x1tf18ck] {
        flex-direction: column;
        align-items: flex-start;
    }
}
