@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.bundle.scp.css';

/* /Components/Layout/MainLayout.razor.rz.scp.css */
:root[b-8d5z1nzd2f] {
    --sidebar-width: 260px;
    --sidebar-collapsed-width: 80px;
    --top-row-height: 70px;
    --primary-color: #0b57d0;
    --bg-light: #ffffff;
    --content-padding: 2rem;
    /* Cambiado de gris a blanco puro */
    --card-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

@media (max-width: 1200px) {
    :root[b-8d5z1nzd2f] {
        --sidebar-width: 230px;
        --content-padding: 1.5rem;
        --top-row-height: 60px;
    }
}

@media (max-width: 1024px) {
    :root[b-8d5z1nzd2f] {
        --sidebar-width: 210px;
        --content-padding: 1.25rem;
    }

    html[b-8d5z1nzd2f],
    body[b-8d5z1nzd2f] {
        font-size: 14px;
    }
}

.page[b-8d5z1nzd2f] {
    position: relative;
    display: flex;
    height: 100vh;
    background-color: var(--bg-light);
    max-width: 1440px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.sidebar[b-8d5z1nzd2f] {
    width: var(--sidebar-width);
    flex-shrink: 0;
    /* Asegura que no se encoja en flex */
    background-color: white;
    height: 100vh;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.03);
}

.sidebar-backdrop[b-8d5z1nzd2f] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-backdrop.show[b-8d5z1nzd2f] {
    display: block;
    opacity: 1;
}

.sidebar.collapsed[b-8d5z1nzd2f] {
    width: var(--sidebar-collapsed-width);
}

/* Ocultar elementos del NavMenu cuando está colapsado */
.sidebar.collapsed[b-8d5z1nzd2f]  .nav-text,
.sidebar.collapsed[b-8d5z1nzd2f]  .company-info {
    display: none;
}

.sidebar.collapsed[b-8d5z1nzd2f]  .company-selector {
    justify-content: center;
    gap: 0;
}

main[b-8d5z1nzd2f] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background-color: var(--bg-light);
    overflow-y: auto;
    position: relative;
}

/* Personalización del Scrollbar para un look más premium */
main[b-8d5z1nzd2f]::-webkit-scrollbar {
    width: 8px;
}

main[b-8d5z1nzd2f]::-webkit-scrollbar-track {
    background: transparent;
}

main[b-8d5z1nzd2f]::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

main[b-8d5z1nzd2f]::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* ELIMINADOS LOS MÁRGENES IZQUIERDOS QUE CAUSABAN CONFLICTO CON FLEXBOX */

.top-row[b-8d5z1nzd2f] {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    padding: 0 var(--content-padding);
    height: var(--top-row-height);
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.toggle-btn[b-8d5z1nzd2f] {
    font-size: 1.4rem;
    color: #444 !important;
    padding: 8px !important;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.toggle-btn:hover[b-8d5z1nzd2f] {
    background-color: rgba(0, 0, 0, 0.05);
}

.user-profile[b-8d5z1nzd2f] {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon[b-8d5z1nzd2f] {
    color: #5f6368;
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.icon:hover[b-8d5z1nzd2f] {
    color: var(--primary-color);
}

.avatar[b-8d5z1nzd2f] {
    width: 38px;
    height: 38px;
    background: #e8f0fe;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.content[b-8d5z1nzd2f] {
    /*padding: var(--content-padding) !important;*/
}

@media (max-width: 992px) {
    .sidebar[b-8d5z1nzd2f] {
        position: fixed;
        left: -300px;
        /* Asegura que esté fuera de pantalla */
        top: 0;
        bottom: 0;
        width: var(--sidebar-width);
        box-shadow: none;
        z-index: 1001;
        /* Encima del backdrop */
    }

    .sidebar.show-mobile[b-8d5z1nzd2f] {
        left: 0;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
    }

    .page[b-8d5z1nzd2f] {
        max-width: 100%;
        /* En móviles usamos todo el ancho */
    }
}

@media (max-width: 640.98px) {
    .top-row[b-8d5z1nzd2f] {
        padding: 0 1rem;
    }

    .content[b-8d5z1nzd2f] {
        padding: 1rem !important;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.sidebar-header[b-xid84u950p] {
    padding: 30px 20px;
}

.company-selector[b-xid84u950p] {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 48px;
}

.app-icon[b-xid84u950p] {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, #0b57d0 0%, #1a73e8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 10px rgba(11, 87, 208, 0.2);
}

.company-info[b-xid84u950p] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    white-space: nowrap;
}

.app-name[b-xid84u950p] {
    font-weight: 700;
    color: #202124;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}

.company-name[b-xid84u950p] {
    font-size: 0.7rem;
    color: #5f6368;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.nav-menu[b-xid84u950p] {
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-item[b-xid84u950p] {
    width: 100%;
}

.nav-item[b-xid84u950p]  .nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: #5f6368;
    font-weight: 500;
    transition: all 0.25s ease;
}

.nav-item[b-xid84u950p]  .nav-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: #5f6368;
    transition: transform 0.2s;
}

.nav-item[b-xid84u950p]  .nav-text {
    font-size: 0.95rem;
    overflow: hidden;
    white-space: nowrap;
}

.nav-item[b-xid84u950p]  .nav-link:hover {
    background-color: #f1f3f4;
    color: #202124;
}

.nav-item[b-xid84u950p]  .nav-link:hover .nav-icon {
    transform: scale(1.1);
    color: #0b57d0;
}

.nav-item[b-xid84u950p]  .nav-link.active {
    background-color: #e8f0fe;
    color: #0b57d0;
}

.nav-item[b-xid84u950p]  .nav-link.active .nav-icon {
    color: #0b57d0;
}

.nav-item[b-xid84u950p]  .nav-link.active .nav-text {
    font-weight: 600;
}

@media (max-width: 1024px) {
    .sidebar-header[b-xid84u950p] {
        padding: 20px 15px;
    }

    .app-icon[b-xid84u950p] {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .app-name[b-xid84u950p] {
        font-size: 1rem;
    }

    .nav-menu[b-xid84u950p] {
        padding: 5px 10px;
    }

    .nav-item[b-xid84u950p]  .nav-link {
        padding: 10px 12px;
        gap: 12px;
    }

    .nav-item[b-xid84u950p]  .nav-text {
        font-size: 0.85rem;
    }
}
/* /Components/Pages/Empleados.razor.rz.scp.css */
/* KPI Cards */
.kpi-card[b-80kgc0tlzv] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.kpi-card:hover[b-80kgc0tlzv] {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(11, 87, 208, 0.2) !important;
}

.kpi-card h2[b-80kgc0tlzv] {
    letter-spacing: -1px;
}

/* Cabecera Responsiva */
.search-box[b-80kgc0tlzv] {
    max-width: 350px;
    border-radius: 12px;
    overflow: hidden;
}

.search-box .form-control[b-80kgc0tlzv] {
    border-color: #e2e8f0;
}

.search-box .form-control:focus[b-80kgc0tlzv] {
    box-shadow: none;
    border-color: #0b57d0;
}

.btn-action[b-80kgc0tlzv] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.btn-calculate[b-80kgc0tlzv] {
    background-color: #e6f6ec;
    color: #059669;
}

.btn-calculate:hover[b-80kgc0tlzv] {
    background-color: #059669;
    color: white;
}

.btn-sync[b-80kgc0tlzv] {
    background-color: #f1f5f9;
    color: #475569;
    border-color: #e2e8f0;
}

.btn-sync:hover[b-80kgc0tlzv] {
    background-color: #e2e8f0;
    color: #1e293b;
}

.btn-sync.loading i[b-80kgc0tlzv] {
    animation: spin-b-80kgc0tlzv 1s linear infinite;
}

@keyframes spin-b-80kgc0tlzv {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.btn-icon[b-80kgc0tlzv] {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s;
    border-width: 1px;
}

.btn-icon:hover[b-80kgc0tlzv] {
    transform: scale(1.1);
}


/* =========================
   QuickGrid Customization
========================= */
[b-80kgc0tlzv] .quickgrid {
    --quickgrid-header-bg: #f8f9fa;
    --quickgrid-header-text: #6c757d;
    width: 100%;
}

[b-80kgc0tlzv] .quickgrid th {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

[b-80kgc0tlzv] .quickgrid td {
    padding: 1rem 0.5rem;
}


/* =========================
   Pagination Styling
========================= */
[b-80kgc0tlzv] .paginator {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem;
    background: transparent;
}

/* Buttons */
[b-80kgc0tlzv] .paginator button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #dee2e6;
    background: white;
    color: #0b458d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    /* oculta texto original */
    position: relative;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Evita que QuickGrid voltee next/last */
[b-80kgc0tlzv] .paginator .go-next,
[b-80kgc0tlzv] .paginator .go-last {
    transform: none !important;
}

[b-80kgc0tlzv] .paginator .go-previous,
[b-80kgc0tlzv] .paginator .go-first {
    transform: none !important;
}

/* Ocultar SVG nativo */
[b-80kgc0tlzv] .paginator button svg {
    display: none;
}

/* Bootstrap Icons */
[b-80kgc0tlzv] .paginator button::before {
    font-family: "bootstrap-icons" !important;
    font-size: 1.1rem !important;
    line-height: 1;
    display: block;
}

/* First */
[b-80kgc0tlzv] .paginator button[title*="irst"]::before,
[b-80kgc0tlzv] .paginator button[title*="rimera"]::before {
    content: "\F281" !important;
    /* chevron-double-left */
}

/* Previous */
[b-80kgc0tlzv] .paginator button[title*="revious"]::before,
[b-80kgc0tlzv] .paginator button[title*="nterior"]::before {
    content: "\F284" !important;
    /* chevron-left */
}

/* Next */
[b-80kgc0tlzv] .paginator button[title*="ext"]::before,
[b-80kgc0tlzv] .paginator button[title*="iguiente"]::before {
    content: "\F285" !important;
    /* chevron-right */
}

/* Last */
[b-80kgc0tlzv] .paginator button[title*="ast"]::before,
[b-80kgc0tlzv] .paginator button[title*="ltima"]::before {
    content: "\F282" !important;
    /* chevron-double-right */
}

/* Hover */
[b-80kgc0tlzv] .paginator button:hover:not(:disabled) {
    background: #0b458d;
    color: white;
    border-color: #0b458d;
    transform: scale(1.08);
}

/* Disabled */
[b-80kgc0tlzv] .paginator button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #f8f9fa;
}

/* Current page text */
[b-80kgc0tlzv] .paginator .current-page-indicator {
    padding: 0 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6c757d;
}


/* =========================
   Modal Animation
========================= */
.animation-fade-in[b-80kgc0tlzv] {
    animation: fadeIn-b-80kgc0tlzv 0.3s ease-out;
}

@keyframes fadeIn-b-80kgc0tlzv {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* =========================
   Responsive
========================= */
@media (max-width: 992px) {
    .search-box[b-80kgc0tlzv] {
        max-width: 100%;
        width: 100%;
    }

    .kpi-grid[b-80kgc0tlzv] {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {

    [b-80kgc0tlzv] .quickgrid [title="ID ZKTECO"],
    [b-80kgc0tlzv] .quickgrid [title="DEPARTAMENTO"] {
        display: none;
    }

    .btn-action span[b-80kgc0tlzv] {
        display: none;
    }

    .btn-action[b-80kgc0tlzv] {
        width: 44px;
        height: 44px;
        padding: 0;
    }
}


/* =========================
   Modal Table Scroll
========================= */
.table-sm[b-80kgc0tlzv] {
    font-size: 0.875rem;
}

.table-responsive[b-80kgc0tlzv]::-webkit-scrollbar {
    width: 6px;
}

.table-responsive[b-80kgc0tlzv]::-webkit-scrollbar-thumb {
    background-color: #dee2e6;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .kpi-card .card-body[b-80kgc0tlzv] {
        padding: 1.25rem !important;
    }

    .kpi-card h2[b-80kgc0tlzv] {
        font-size: calc(1.3rem + 0.6vw);
    }

    .kpi-card p[b-80kgc0tlzv] {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    h2.text-dark[b-80kgc0tlzv] {
        font-size: 1.5rem;
    }

    [b-80kgc0tlzv] .quickgrid td {
        padding: 0.75rem 0.5rem;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.dashboard-header[b-4hbotzblc2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-header h1[b-4hbotzblc2] {
    font-size: 1.8rem;
    margin: 0 0 5px 0;
    color: #1a1a1a;
}

.date[b-4hbotzblc2] {
    color: #666;
    margin: 0;
}

.header-right[b-4hbotzblc2] {
    display: flex;
    gap: 15px;
}

.btn-primary[b-4hbotzblc2] {
    background: #0b458d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

.btn-outline[b-4hbotzblc2] {
    background: transparent;
    color: #0b458d;
    border: 1px solid #d1d5db;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

.kpi-grid[b-4hbotzblc2] {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 10px;
}

.kpi-card[b-4hbotzblc2] {
    background: white;
    border-radius: 16px;
    padding: 1.2rem;
    flex: 1;
    min-width: 150px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f3f5;
}

.kpi-title[b-4hbotzblc2] {
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.kpi-value-container[b-4hbotzblc2] {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.kpi-value-container h2[b-4hbotzblc2] {
    font-size: 2rem;
    margin: 0;
    color: #111;
}

.badge[b-4hbotzblc2] {
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge.positive[b-4hbotzblc2] {
    background: #e3f2fd;
    color: #0b458d;
}

.badge.negative[b-4hbotzblc2] {
    background: #fee2e2;
    color: #e03e3e;
}

.badge.neutral[b-4hbotzblc2] {
    background: #f3f4f6;
    color: #4b5563;
}

.badge.meta[b-4hbotzblc2] {
    background: #fff3cd;
    color: #856404;
}

.main-content-grid[b-4hbotzblc2] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.chart-section[b-4hbotzblc2] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f3f5;
}

.chart-section h3[b-4hbotzblc2] {
    margin: 0;
    font-size: 1.2rem;
}

.chart-section .subtitle[b-4hbotzblc2] {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.chart-mockup[b-4hbotzblc2] {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.chart-mockup svg[b-4hbotzblc2] {
    width: 100%;
    height: 100%;
}

.alerts-section h3[b-4hbotzblc2] {
    margin: 0 0 1.5rem 0;
    font-size: 1.2rem;
}

.alert-card[b-4hbotzblc2] {
    display: flex;
    gap: 15px;
    padding: 1.2rem;
    border-radius: 12px;
    margin-bottom: 15px;
}

.alert-card.critical[b-4hbotzblc2] {
    background: #fff5f5;
    border-left: 4px solid #e03e3e;
}

.alert-card.info[b-4hbotzblc2] {
    background: #f8f9fa;
    border-left: 4px solid #6c757d;
}

.alert-card.optimization[b-4hbotzblc2] {
    background: #f0f7ff;
    border-left: 4px solid #0b458d;
}

.icon[b-4hbotzblc2] {
    font-size: 1.2rem;
}

.alert-content h4[b-4hbotzblc2] {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
    color: #333;
}

.alert-content p[b-4hbotzblc2] {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* Indicadores Inferiores */
.bottom-kpi-grid[b-4hbotzblc2] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 1.5rem;
}

.kpi-detail-card[b-4hbotzblc2] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f3f5;
}

@media (max-width: 992px) {
    .dashboard-header[b-4hbotzblc2] {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .kpi-grid[b-4hbotzblc2] {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        overflow-x: visible;
        padding-bottom: 0;
    }

    .main-content-grid[b-4hbotzblc2] {
        grid-template-columns: 1fr;
    }

    .kpi-card h2[b-4hbotzblc2] {
        font-size: 1.5rem;
    }

    .bottom-kpi-grid[b-4hbotzblc2] {
        grid-template-columns: 1fr;
    }
}

.kpi-detail-card h4[b-4hbotzblc2] {
    margin: 0 0 1.5rem 0;
    font-size: 1.1rem;
    color: #111;
    font-weight: 600;
}

.list-container[b-4hbotzblc2] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.list-item[b-4hbotzblc2] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar[b-4hbotzblc2] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.bg-primary-light[b-4hbotzblc2] {
    background: #e6f0fa;
    color: #0b458d;
}

.bg-danger-light[b-4hbotzblc2] {
    background: #fef2f2;
    color: #dc2626;
}

.list-item .info[b-4hbotzblc2] {
    flex: 1;
}

.list-item .info h5[b-4hbotzblc2] {
    margin: 0 0 2px 0;
    font-size: 0.95rem;
    color: #1f2937;
    font-weight: 600;
}

.list-item .info span[b-4hbotzblc2] {
    font-size: 0.75rem;
    color: #6b7280;
}

.list-item .value[b-4hbotzblc2] {
    font-size: 0.95rem;
    font-weight: 700;
}
/* /Components/Pages/Horarios.razor.rz.scp.css */
.schedule-card[b-op53gxmbeg] {
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: white;
}

.schedule-card:hover[b-op53gxmbeg] {
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05) !important;
}

.btn-edit-badge[b-op53gxmbeg] {
    background-color: #fff9db;
    color: #f08c00;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.schedule-card:hover .btn-edit-badge[b-op53gxmbeg] {
    background-color: #f08c00;
    color: white;
}

.border-dashed[b-op53gxmbeg] {
    border: 2px dashed #e2e8f0 !important;
}

.bg-primary[b-op53gxmbeg] {
    background-color: #0b458d !important;
}

.text-primary[b-op53gxmbeg] {
    color: #0b458d !important;
}
/* /Components/Pages/Login.razor.rz.scp.css */
/* /Components/Pages/PlanillaQuincenal.razor.rz.scp.css */
.planilla-container[b-jfr8uf2hcb] {
    background-color: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.header-section[b-jfr8uf2hcb] {
    margin-bottom: 2rem;
}

.filter-box[b-jfr8uf2hcb] {
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.btn-generate[b-jfr8uf2hcb] {
    background-color: #0b57d0;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-generate:hover:not(:disabled)[b-jfr8uf2hcb] {
    background-color: #0842a0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 87, 208, 0.2);
}

.planilla-table[b-jfr8uf2hcb] {
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.85rem;
    border: none !important;
}

.planilla-table th[b-jfr8uf2hcb] {
    background-color: #f8fafc !important;
    color: #475569;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    padding: 12px 8px;
    border: 1px solid #e2e8f0 !important;
}

.planilla-table td[b-jfr8uf2hcb] {
    padding: 8px;
    border: 1px solid #e2e8f0 !important;
    color: #1e293b;
}

.sticky-col[b-jfr8uf2hcb] {
    position: sticky;
    background-color: white !important;
    z-index: 10;
}

.first-col[b-jfr8uf2hcb] {
    left: 0;
    min-width: 45px;
}

.second-col[b-jfr8uf2hcb] {
    left: 45px;
    min-width: 220px;
    box-shadow: 4px 0 8px rgba(0, 0, 0, 0.03);
    z-index: 11;
}

.header-days th[b-jfr8uf2hcb] {
    min-width: 85px;
    text-align: center;
}

.planilla-cell[b-jfr8uf2hcb] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 45px;
}

.cell-status[b-jfr8uf2hcb] {
    font-weight: 800;
    font-size: 0.65rem;
    margin-bottom: 2px;
}

.cell-marcacion[b-jfr8uf2hcb] {
    font-size: 0.7rem;
    font-weight: 500;
}

/* Status Colors */
.cell-asistio[b-jfr8uf2hcb] {
    background-color: #f0fdf4 !important;
    color: #166534 !important;
    border-color: #bcf0da !important;
}

.cell-falto[b-jfr8uf2hcb] {
    background-color: #fef2f2 !important;
    color: #991b1b !important;
    border-color: #fecaca !important;
}

.cell-tarde[b-jfr8uf2hcb] {
    background-color: #fffbeb !important;
    color: #92400e !important;
    border-color: #fde68a !important;
}

.cell-dominical[b-jfr8uf2hcb] {
    background-color: #eff6ff !important;
    color: #1e40af !important;
    border-color: #bfdbfe !important;
}

.cell-descanso[b-jfr8uf2hcb] {
    background-color: #f8fafc !important;
    color: #64748b !important;
}

.planilla-table tr:hover td[b-jfr8uf2hcb] {
    background-color: #f1f5f9 !important;
}

.planilla-wrapper[b-jfr8uf2hcb] {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.planilla-wrapper[b-jfr8uf2hcb]::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.planilla-wrapper[b-jfr8uf2hcb]::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .header-section[b-jfr8uf2hcb] {
        flex-direction: column;
        align-items: flex-start !important;
    }
}

@media (max-width: 1024px) {
    .planilla-container[b-jfr8uf2hcb] {
        padding: 1rem;
    }

    .filter-box[b-jfr8uf2hcb] {
        padding: 12px;
    }

    .planilla-table[b-jfr8uf2hcb] {
        font-size: 0.8rem;
    }
}
/* /Components/Pages/Reportes.razor.rz.scp.css */
.reportes-container[b-evy0rl0u8m] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-bottom: 20px;
}

.header-breadcrumb[b-evy0rl0u8m] {
    font-size: 0.70rem;
    letter-spacing: 1.5px;
    color: #9aa0a6 !important;
}

.action-btn[b-evy0rl0u8m] {
    background-color: #0b57d0 !important;
    border-color: #0b57d0 !important;
}

.card-custom[b-evy0rl0u8m] {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.insight-badge[b-evy0rl0u8m] {
    background-color: #f0f4f9;
    color: #0b57d0;
    font-weight: 700;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.form-title[b-evy0rl0u8m] {
    font-size: 1.25rem;
}

.global-rate-card[b-evy0rl0u8m] {
    border-bottom: 4px solid #0b57d0 !important;
}

.rate-text[b-evy0rl0u8m] {
    font-size: 3.5rem;
    letter-spacing: -2px;
}

.rate-increase[b-evy0rl0u8m] {
    color: #0b57d0;
}

.chart-legend[b-evy0rl0u8m] {
    background-color: #f0f4f9;
    color: #444;
    border-radius: 20px;
    font-size: 0.75rem;
}

.legend-dot[b-evy0rl0u8m] {
    color: #0b57d0;
}

.chart-container[b-evy0rl0u8m] {
    min-height: 240px;
}

.chart-col[b-evy0rl0u8m] {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 14%;
    position: relative;
    padding-bottom: 10px;
}

.chart-dot[b-evy0rl0u8m] {
    width: 12px;
    height: 12px;
    background-color: #0b57d0;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 4px rgba(11, 87, 208, 0.15);
}

.chart-col-title[b-evy0rl0u8m] {
    font-size: 0.6rem;
    color: #8f959e;
    font-weight: 800;
    margin-top: 5px;
}

.z-int[b-evy0rl0u8m] {
    z-index: 10;
}

.legend-box[b-evy0rl0u8m] {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.heatmap-grid[b-evy0rl0u8m] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.heatmap-header[b-evy0rl0u8m] {
    text-align: center;
    font-size: 0.7rem;
    color: #8f959e;
    font-weight: 700;
    margin-bottom: 10px;
}

.heatmap-cell[b-evy0rl0u8m] {
    aspect-ratio: 1 / 0.9;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.heatmap-cell:not(.empty):hover[b-evy0rl0u8m] {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.heatmap-cell.border[b-evy0rl0u8m] {
    border: 1px solid #e0e0e0;
}

.lv1[b-evy0rl0u8m] {
    background-color: #e6eef5;
    color: #333;
}

.lv2[b-evy0rl0u8m] {
    background-color: #adcdee;
    color: #1a1a1a;
}

.lv3[b-evy0rl0u8m] {
    background-color: #7daeed;
    color: #1a1a1a;
}

.lv4[b-evy0rl0u8m] {
    background-color: #005bc4;
    color: white;
}

.lv5[b-evy0rl0u8m] {
    background-color: #004aa6;
    color: white;
}

.empty[b-evy0rl0u8m] {
    background-color: transparent;
    cursor: default;
}
