/* /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;
}
