/* _content/TS.Cronos.RRHH.Web/Components/Layout/MainLayout.razor.rz.scp.css */
/* =============================================
   MAIN LAYOUT - MainLayout.razor.css
   ============================================= */

/* Quitar márgenes globales */
*[b-lzdk8t9ze3], *[b-lzdk8t9ze3]::before, *[b-lzdk8t9ze3]::after {
    box-sizing: border-box;
}

html[b-lzdk8t9ze3], body[b-lzdk8t9ze3] {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

/* Layout principal: sidebar + contenido lado a lado */
.main-layout[b-lzdk8t9ze3] {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    background: #f8fafc;
}

/* Área de contenido: ocupa todo el espacio restante */
.content-area[b-lzdk8t9ze3] {
    flex: 1;
    min-width: 0; /* importante para que no desborde */
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

main[b-lzdk8t9ze3] {
    flex: 1;
    overflow-y: auto;
}

/* ── Responsive mobile ── */
@media (max-width: 640px) {
    .main-layout[b-lzdk8t9ze3] {
        flex-direction: column;
    }

    .content-area[b-lzdk8t9ze3] {
        width: 100%;
    }
}
/* _content/TS.Cronos.RRHH.Web/Components/Layout/NavMenu.razor.rz.scp.css */
/* =============================================
   SIDEBAR - NavMenu.razor.css (Blazor fixed)
   ============================================= */

.sidebar[b-mtyld5t21d] {
    display: flex;
    flex-direction: column;
    width: 240px;
    min-height: 100vh;
    background: linear-gradient(160deg, #0f1535 0%, #1a1f4b 100%);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.4);
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    z-index: 100;
    flex-shrink: 0;
}

.sidebar.collapsed[b-mtyld5t21d] {
    width: 68px;
}

.sidebar-header[b-mtyld5t21d] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    min-height: 64px;
    gap: 0.5rem;
}

.brand-area[b-mtyld5t21d] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    overflow: hidden;
    flex: 1;
}

.logo-wrapper[b-mtyld5t21d] {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
}

.brand-logo[b-mtyld5t21d] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: contain;
}

.logo-fallback[b-mtyld5t21d] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #6c63ff, #a78bfa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: white;
}

.brand-name[b-mtyld5t21d] {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff !important;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.25s ease;
    letter-spacing: 0.3px;
    text-decoration: none !important;
}

.sidebar.collapsed .brand-name[b-mtyld5t21d] {
    opacity: 0;
    width: 0;
}

.toggle-btn[b-mtyld5t21d] {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: #8892a4;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.toggle-btn:hover[b-mtyld5t21d] {
    background: rgba(108, 99, 255, 0.15);
    color: #6c63ff;
    border-color: #6c63ff;
}

.toggle-icon[b-mtyld5t21d] {
    width: 14px;
    height: 14px;
}

.sidebar-nav[b-mtyld5t21d] {
    flex: 1;
    padding: 0.75rem 0.5rem;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar[b-mtyld5t21d]  .nav-link-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.65rem;
    padding: 0.6rem 0.75rem !important;
    border-radius: 10px;
    color: #e2e8f0 !important;
    text-decoration: none !important;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2px;
    transition: all 0.25s ease;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.sidebar[b-mtyld5t21d]  .nav-link-item:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.sidebar[b-mtyld5t21d]  .nav-link-item.active {
    background: rgba(108, 99, 255, 0.25) !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 1px rgba(108, 99, 255, 0.3);
}

.sidebar[b-mtyld5t21d]  .nav-highlight {
    color: #a78bfa !important;
    margin-top: 0.5rem;
}

.sidebar[b-mtyld5t21d]  .nav-highlight:hover {
    background: rgba(167, 139, 250, 0.15) !important;
    color: #c4b5fd !important;
}

.nav-icon[b-mtyld5t21d] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #8892a4;
    transition: color 0.25s ease;
}

.nav-icon svg[b-mtyld5t21d] {
    width: 18px;
    height: 18px;
}

.sidebar[b-mtyld5t21d]  .nav-link-item:hover .nav-icon,
.sidebar[b-mtyld5t21d]  .nav-link-item.active .nav-icon {
    color: #6c63ff;
}

.nav-label[b-mtyld5t21d] {
    opacity: 1;
    transition: opacity 0.25s ease;
    white-space: nowrap;
    color: inherit;
}

.sidebar.collapsed .nav-label[b-mtyld5t21d] {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.nav-group[b-mtyld5t21d] {
    margin-bottom: 2px;
}

.nav-group-header[b-mtyld5t21d] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    overflow: hidden;
    text-align: left;
}

.nav-group-header:hover[b-mtyld5t21d] {
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.nav-group.open .nav-group-header[b-mtyld5t21d] {
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.nav-group.open .nav-group-header .nav-icon[b-mtyld5t21d] {
    color: #6c63ff;
}

.chevron[b-mtyld5t21d] {
    margin-left: auto;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.chevron svg[b-mtyld5t21d] {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
}

.nav-group.open .chevron svg[b-mtyld5t21d] {
    transform: rotate(180deg);
}

.sidebar.collapsed .chevron[b-mtyld5t21d] {
    display: none;
}

.nav-submenu[b-mtyld5t21d] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: 0.5rem;
}

.nav-group.open .nav-submenu[b-mtyld5t21d] {
    max-height: 300px;
}

.sidebar.collapsed .nav-submenu[b-mtyld5t21d] {
    display: none;
}

.sidebar[b-mtyld5t21d]  .nav-sublink {
    display: flex !important;
    align-items: center !important;
    gap: 0.65rem;
    padding: 0.5rem 0.75rem !important;
    border-radius: 8px;
    color: #8892a4 !important;
    text-decoration: none !important;
    font-size: 0.82rem;
    font-weight: 400;
    margin-bottom: 1px;
    transition: all 0.25s ease;
}

.sidebar[b-mtyld5t21d]  .nav-sublink:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    color: #e2e8f0 !important;
    text-decoration: none !important;
}

.sidebar[b-mtyld5t21d]  .nav-sublink.active {
    color: #6c63ff !important;
    background: rgba(108, 99, 255, 0.15) !important;
}

.sub-dot[b-mtyld5t21d] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8892a4;
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.sidebar[b-mtyld5t21d]  .nav-sublink:hover .sub-dot,
.sidebar[b-mtyld5t21d]  .nav-sublink.active .sub-dot {
    background: #6c63ff;
}

.sidebar-footer[b-mtyld5t21d] {
    padding: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.user-info[b-mtyld5t21d] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0.25rem;
    overflow: hidden;
}

.avatar[b-mtyld5t21d] {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #6c63ff, #a78bfa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.user-details[b-mtyld5t21d] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.sidebar.collapsed .user-details[b-mtyld5t21d] {
    opacity: 0;
    width: 0;
}

.user-name[b-mtyld5t21d] {
    font-size: 0.82rem;
    font-weight: 600;
    color: #e2e8f0;
    white-space: nowrap;
}

.user-role[b-mtyld5t21d] {
    font-size: 0.72rem;
    color: #8892a4;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .sidebar.collapsed[b-mtyld5t21d] {
        transform: translateX(-100%);
        width: 240px;
    }
}
/* _content/TS.Cronos.RRHH.Web/Components/Pages/Home.razor.rz.scp.css */
/* =============================================
   DASHBOARD - Index.razor.css
   ============================================= */

.dashboard[b-jg84ue70e8] {
    padding: 2rem;
    max-width: 1200px;
    background: #f8fafc;
    min-height: 100vh;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

/* ── Header ── */
.dash-header[b-jg84ue70e8] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.dash-title[b-jg84ue70e8] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.5px;
}

.dash-sub[b-jg84ue70e8] {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.header-actions[b-jg84ue70e8] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.date-badge[b-jg84ue70e8] {
    padding: 0.4rem 0.75rem;
    background: #e2e8f0;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #475569;
    font-weight: 500;
}

.btn-primary[b-jg84ue70e8] {
    padding: 0.5rem 1.1rem;
    background: #6c63ff;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

.btn-primary:hover[b-jg84ue70e8] {
    background: #5b52e8;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(108, 99, 255, 0.4);
}

/* ── Grid principal de stats ── */
.stats-grid[b-jg84ue70e8] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-card[b-jg84ue70e8] {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.stat-card:hover[b-jg84ue70e8] {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* ── Grid secundario ── */
.stats-grid-2[b-jg84ue70e8] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.stat-card-sm[b-jg84ue70e8] {
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.2s;
}

.stat-card-sm:hover[b-jg84ue70e8] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ── Iconos de stats ── */
.stat-icon[b-jg84ue70e8] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon.sm[b-jg84ue70e8] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.stat-icon svg[b-jg84ue70e8] {
    width: 24px;
    height: 24px;
}

.stat-icon.sm svg[b-jg84ue70e8] {
    width: 20px;
    height: 20px;
}

.stat-icon.blue[b-jg84ue70e8]   { background: #dbeafe; color: #2563eb; }
.stat-icon.yellow[b-jg84ue70e8] { background: #fef9c3; color: #ca8a04; }
.stat-icon.green[b-jg84ue70e8]  { background: #dcfce7; color: #16a34a; }
.stat-icon.red[b-jg84ue70e8]    { background: #fee2e2; color: #dc2626; }
.stat-icon.purple[b-jg84ue70e8] { background: #f3e8ff; color: #9333ea; }
.stat-icon.indigo[b-jg84ue70e8] { background: #e0e7ff; color: #4f46e5; }
.stat-icon.cyan[b-jg84ue70e8]   { background: #cffafe; color: #0891b2; }

/* ── Texto de stat ── */
.stat-info[b-jg84ue70e8] {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.stat-value[b-jg84ue70e8] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.stat-card-sm .stat-value[b-jg84ue70e8] {
    font-size: 1.4rem;
}

.stat-label[b-jg84ue70e8] {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
}

/* ── Tendencia ── */
.stat-trend[b-jg84ue70e8] {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    white-space: nowrap;
    align-self: flex-start;
}

.stat-trend.up[b-jg84ue70e8]      { background: #dcfce7; color: #16a34a; }
.stat-trend.down[b-jg84ue70e8]    { background: #fee2e2; color: #dc2626; }
.stat-trend.neutral[b-jg84ue70e8] { background: #f1f5f9; color: #64748b; }

/* ── Tabla reciente ── */
.recent-section[b-jg84ue70e8] {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
}

.section-header[b-jg84ue70e8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.section-title[b-jg84ue70e8] {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.link-ver-todas[b-jg84ue70e8] {
    font-size: 0.82rem;
    color: #6c63ff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.link-ver-todas:hover[b-jg84ue70e8] {
    opacity: 0.75;
}

.table-wrapper[b-jg84ue70e8] {
    overflow-x: auto;
}

.data-table[b-jg84ue70e8] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.data-table th[b-jg84ue70e8] {
    text-align: left;
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f1f5f9;
}

.data-table td[b-jg84ue70e8] {
    padding: 0.85rem 1rem;
    color: #334155;
    border-bottom: 1px solid #f8fafc;
}

.data-table tbody tr:hover td[b-jg84ue70e8] {
    background: #f8fafc;
}

.data-table tbody tr:last-child td[b-jg84ue70e8] {
    border-bottom: none;
}

.otm-num[b-jg84ue70e8] {
    font-weight: 600;
    color: #6c63ff;
    font-family: monospace;
}

/* ── Badges de estado ── */
.badge[b-jg84ue70e8] {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.badge-green[b-jg84ue70e8]  { background: #dcfce7; color: #16a34a; }
.badge-yellow[b-jg84ue70e8] { background: #fef9c3; color: #a16207; }
.badge-blue[b-jg84ue70e8]   { background: #dbeafe; color: #2563eb; }
.badge-red[b-jg84ue70e8]    { background: #fee2e2; color: #dc2626; }
.badge-gray[b-jg84ue70e8]   { background: #f1f5f9; color: #64748b; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .stats-grid[b-jg84ue70e8] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .dashboard[b-jg84ue70e8] {
        padding: 1rem;
    }
    .stats-grid[b-jg84ue70e8],
    .stats-grid-2[b-jg84ue70e8] {
        grid-template-columns: 1fr 1fr;
    }
    .dash-header[b-jg84ue70e8] {
        flex-direction: column;
    }
}
/* _content/TS.Cronos.RRHH.Web/Components/Pages/Login.razor.rz.scp.css */
/* =============================================
   LOGIN - Login.razor.css
   ============================================= */

/* Reset para la pantalla de login */
.login-wrapper[b-c3nepqrsej] {
    display: flex;
    min-height: 100vh;
    width: 100%;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

/* ══════════════════════════════════
   PANEL IZQUIERDO — Imagen grande
══════════════════════════════════ */
.login-image-panel[b-c3nepqrsej] {
    flex: 1.2;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0f1535 0%, #1a1f4b 100%);
}

.login-bg-img[b-c3nepqrsej] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Cuando no hay imagen, el panel muestra el degradado */
.login-image-panel.no-image[b-c3nepqrsej] {
    background: linear-gradient(160deg, #0f1535 0%, #1a1f4b 100%);
}

/* Overlay oscuro encima de la imagen */
.image-overlay[b-c3nepqrsej] {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 21, 53, 0.75) 0%,
        rgba(26, 31, 75, 0.65) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.overlay-content[b-c3nepqrsej] {
    text-align: center;
    color: white;
    animation: fadeInUp-b-c3nepqrsej 0.8s ease both;
}

.overlay-logo[b-c3nepqrsej] {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    overflow: hidden;
}

.overlay-logo img[b-c3nepqrsej] {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.overlay-logo-fallback[b-c3nepqrsej] {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #6c63ff, #a78bfa);
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1.5rem;
}

.overlay-title[b-c3nepqrsej] {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.overlay-subtitle[b-c3nepqrsej] {
    font-size: 1rem;
    opacity: 0.85;
    margin: 0 0 1.5rem;
    font-weight: 400;
    line-height: 1.5;
}

.overlay-divider[b-c3nepqrsej] {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #6c63ff, #a78bfa);
    border-radius: 2px;
    margin: 0 auto 1.25rem;
}

.overlay-desc[b-c3nepqrsej] {
    font-size: 0.85rem;
    opacity: 0.65;
    margin: 0;
    letter-spacing: 0.5px;
}

/* ══════════════════════════════════
   PANEL DERECHO — Formulario
══════════════════════════════════ */
.login-form-panel[b-c3nepqrsej] {
    flex: 0 0 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    padding: 2rem;
}

.form-container[b-c3nepqrsej] {
    width: 100%;
    max-width: 360px;
    animation: fadeInRight-b-c3nepqrsej 0.6s ease both 0.2s;
}

/* Logo mobile */
.mobile-brand[b-c3nepqrsej] {
    display: none;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f1535;
}

.mobile-logo[b-c3nepqrsej] {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #6c63ff, #a78bfa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    color: white;
}

/* Header del form */
.form-header[b-c3nepqrsej] {
    margin-bottom: 2rem;
}

.form-title[b-c3nepqrsej] {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.35rem;
    letter-spacing: -0.5px;
}

.form-subtitle[b-c3nepqrsej] {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

/* Campos */
.field-group[b-c3nepqrsej] {
    margin-bottom: 1.25rem;
}

.field-label[b-c3nepqrsej] {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.4rem;
    letter-spacing: 0.3px;
}

.field-input-wrapper[b-c3nepqrsej] {
    position: relative;
    display: flex;
    align-items: center;
}

.field-icon[b-c3nepqrsej] {
    position: absolute;
    left: 0.85rem;
    display: flex;
    align-items: center;
    color: #9ca3af;
    pointer-events: none;
}

.field-icon svg[b-c3nepqrsej] {
    width: 18px;
    height: 18px;
}

.field-input[b-c3nepqrsej] {
    width: 100%;
    padding: 0.75rem 2.75rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #0f172a;
    background: #ffffff;
    transition: all 0.2s ease;
    outline: none;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.field-input:focus[b-c3nepqrsej] {
    border-color: #6c63ff;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.12);
}

.field-input[b-c3nepqrsej]::placeholder {
    color: #cbd5e1;
}

.toggle-pass[b-c3nepqrsej] {
    position: absolute;
    right: 0.85rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    display: flex;
    align-items: center;
    padding: 0;
    transition: color 0.2s;
}

.toggle-pass:hover[b-c3nepqrsej] {
    color: #6c63ff;
}

.toggle-pass svg[b-c3nepqrsej] {
    width: 18px;
    height: 18px;
}

/* Alerta de error */
.alert-error[b-c3nepqrsej] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    color: #dc2626;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    animation: shake-b-c3nepqrsej 0.4s ease;
}

.alert-error svg[b-c3nepqrsej] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Botón login */
.btn-login[b-c3nepqrsej] {
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, #6c63ff, #8b84ff);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 14px rgba(108, 99, 255, 0.35);
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.btn-login:hover:not(:disabled)[b-c3nepqrsej] {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.45);
    background: linear-gradient(135deg, #5b52e8, #7c75ff);
}

.btn-login:active:not(:disabled)[b-c3nepqrsej] {
    transform: translateY(0);
}

.btn-login:disabled[b-c3nepqrsej] {
    opacity: 0.8;
    cursor: not-allowed;
}

.btn-login svg[b-c3nepqrsej] {
    width: 20px;
    height: 20px;
}

/* Spinner */
.spinner[b-c3nepqrsej] {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-c3nepqrsej 0.7s linear infinite;
    display: inline-block;
}

/* Footer */
.form-footer[b-c3nepqrsej] {
    margin-top: 2rem;
    text-align: center;
}

.form-footer p[b-c3nepqrsej] {
    font-size: 0.78rem;
    color: #94a3b8;
    margin: 0;
}

/* ══════════════════════════════════
   ANIMACIONES
══════════════════════════════════ */
@keyframes fadeInUp-b-c3nepqrsej {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight-b-c3nepqrsej {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes spin-b-c3nepqrsej {
    to { transform: rotate(360deg); }
}

@keyframes shake-b-c3nepqrsej {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-6px); }
    40%       { transform: translateX(6px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
    .login-image-panel[b-c3nepqrsej] {
        flex: 1;
    }
    .login-form-panel[b-c3nepqrsej] {
        flex: 0 0 360px;
    }
}

/* Móvil — el panel imagen se oculta, el form ocupa toda la pantalla */
@media (max-width: 640px) {
    .login-wrapper[b-c3nepqrsej] {
        flex-direction: column;
    }

    .login-image-panel[b-c3nepqrsej] {
        display: none;
    }

    .login-form-panel[b-c3nepqrsej] {
        flex: 1;
        padding: 2rem 1.5rem;
        background: #ffffff;
    }

    .mobile-brand[b-c3nepqrsej] {
        display: flex;
    }

    .form-container[b-c3nepqrsej] {
        max-width: 100%;
    }
}
/* _content/TS.Cronos.RRHH.Web/Components/Pages/Vigilancia/Vigilante.razor.rz.scp.css */
.vigilante-wrapper[b-uttuqnkx62] {
    max-width: 520px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.vigilante-header[b-uttuqnkx62] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

    .vigilante-header h1[b-uttuqnkx62] {
        font-size: 1.4rem;
        font-weight: 800;
        color: #0f172a;
        margin: 0;
    }

.fecha-hora[b-uttuqnkx62] {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
}

.tabs[b-uttuqnkx62] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.tab[b-uttuqnkx62] {
    flex: 1;
    padding: 0.65rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s;
}

    .tab.active[b-uttuqnkx62] {
        border-color: #6c63ff;
        color: #6c63ff;
        background: #f5f3ff;
    }

.vigilante-card[b-uttuqnkx62] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dni-section[b-uttuqnkx62] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.dni-input-row[b-uttuqnkx62] {
    display: flex;
    gap: 0.5rem;
}

.field-label[b-uttuqnkx62] {
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
}

.field-input[b-uttuqnkx62] {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

    .field-input:focus[b-uttuqnkx62] {
        border-color: #6c63ff;
    }

.field-group[b-uttuqnkx62] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.btn-camara[b-uttuqnkx62] {
    padding: 0.7rem 1rem;
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
}

    .btn-camara:hover[b-uttuqnkx62] {
        background: #e2e8f0;
    }

.camara-container[b-uttuqnkx62] {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: black;
}

    .camara-container video[b-uttuqnkx62] {
        width: 100%;
        display: block;
        border-radius: 12px;
    }

.btn-cerrar-camara[b-uttuqnkx62] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.3rem 0.7rem;
    font-size: 0.8rem;
    cursor: pointer;
}

.btn-accion[b-uttuqnkx62] {
    width: 100%;
    padding: 0.85rem;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
}

    .btn-accion.entrada[b-uttuqnkx62] {
        background: linear-gradient(135deg, #6c63ff, #8b84ff);
        box-shadow: 0 4px 14px rgba(108,99,255,0.35);
    }

    .btn-accion.salida[b-uttuqnkx62] {
        background: linear-gradient(135deg, #f59e0b, #fbbf24);
        box-shadow: 0 4px 14px rgba(245,158,11,0.35);
    }

    .btn-accion:disabled[b-uttuqnkx62] {
        opacity: 0.7;
        cursor: not-allowed;
    }

.resultado[b-uttuqnkx62] {
    border-radius: 12px;
    padding: 1rem 1.25rem;
    animation: fadeIn-b-uttuqnkx62 0.3s ease;
}

    .resultado.exitoso[b-uttuqnkx62] {
        background: #f0fdf4;
        border: 1px solid #bbf7d0;
    }

    .resultado.error[b-uttuqnkx62] {
        background: #fef2f2;
        border: 1px solid #fecaca;
    }

.resultado-nombre[b-uttuqnkx62] {
    font-weight: 700;
    font-size: 1rem;
    color: #15803d;
}

.resultado-tiempo[b-uttuqnkx62] {
    font-size: 0.85rem;
    color: #166534;
    margin-top: 0.25rem;
}

.resultado-error[b-uttuqnkx62] {
    font-weight: 600;
    color: #dc2626;
    font-size: 0.9rem;
}

.spinner[b-uttuqnkx62] {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-uttuqnkx62 0.7s linear infinite;
    display: inline-block;
}

@keyframes spin-b-uttuqnkx62 {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn-b-uttuqnkx62 {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .vigilante-wrapper[b-uttuqnkx62] {
        padding: 1rem 0.75rem;
    }

    .vigilante-header h1[b-uttuqnkx62] {
        font-size: 1.2rem;
    }
}

.persona-encontrada[b-uttuqnkx62] {
    background: #f0f9ff;
    border: 1.5px solid #bae6fd;
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.persona-nombre[b-uttuqnkx62] {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0369a1;
}

.persona-dni[b-uttuqnkx62] {
    font-size: 0.82rem;
    color: #0284c7;
    margin-top: 0.2rem;
}

.botones-confirmacion[b-uttuqnkx62] {
    display: flex;
    gap: 0.75rem;
}

.btn-cancelar[b-uttuqnkx62] {
    flex: 1;
    padding: 0.85rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-cancelar:hover[b-uttuqnkx62] {
        border-color: #cbd5e1;
        background: #f8fafc;
    }

.btn-accion[b-uttuqnkx62] {
    flex: 2;
}
/* _content/TS.Cronos.RRHH.Web/Components/Pages/Vigilancia/Vigilante_old.razor.rz.scp.css */
.vigilante-wrapper[b-11ko4985vd] {
    max-width: 520px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.vigilante-header[b-11ko4985vd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

    .vigilante-header h1[b-11ko4985vd] {
        font-size: 1.4rem;
        font-weight: 800;
        color: #0f172a;
        margin: 0;
    }

.fecha-hora[b-11ko4985vd] {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
}

.tabs[b-11ko4985vd] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.tab[b-11ko4985vd] {
    flex: 1;
    padding: 0.65rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s;
}

    .tab.active[b-11ko4985vd] {
        border-color: #6c63ff;
        color: #6c63ff;
        background: #f5f3ff;
    }

.vigilante-card[b-11ko4985vd] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dni-section[b-11ko4985vd] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.dni-input-row[b-11ko4985vd] {
    display: flex;
    gap: 0.5rem;
}

.field-label[b-11ko4985vd] {
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
}

.field-input[b-11ko4985vd] {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

    .field-input:focus[b-11ko4985vd] {
        border-color: #6c63ff;
    }

.field-group[b-11ko4985vd] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.btn-camara[b-11ko4985vd] {
    padding: 0.7rem 1rem;
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
}

    .btn-camara:hover[b-11ko4985vd] {
        background: #e2e8f0;
    }

.camara-container[b-11ko4985vd] {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: black;
}

    .camara-container video[b-11ko4985vd] {
        width: 100%;
        display: block;
        border-radius: 12px;
    }

.btn-cerrar-camara[b-11ko4985vd] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.3rem 0.7rem;
    font-size: 0.8rem;
    cursor: pointer;
}

.btn-accion[b-11ko4985vd] {
    width: 100%;
    padding: 0.85rem;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
}

    .btn-accion.entrada[b-11ko4985vd] {
        background: linear-gradient(135deg, #6c63ff, #8b84ff);
        box-shadow: 0 4px 14px rgba(108,99,255,0.35);
    }

    .btn-accion.salida[b-11ko4985vd] {
        background: linear-gradient(135deg, #f59e0b, #fbbf24);
        box-shadow: 0 4px 14px rgba(245,158,11,0.35);
    }

    .btn-accion:disabled[b-11ko4985vd] {
        opacity: 0.7;
        cursor: not-allowed;
    }

.resultado[b-11ko4985vd] {
    border-radius: 12px;
    padding: 1rem 1.25rem;
    animation: fadeIn-b-11ko4985vd 0.3s ease;
}

    .resultado.exitoso[b-11ko4985vd] {
        background: #f0fdf4;
        border: 1px solid #bbf7d0;
    }

    .resultado.error[b-11ko4985vd] {
        background: #fef2f2;
        border: 1px solid #fecaca;
    }

.resultado-nombre[b-11ko4985vd] {
    font-weight: 700;
    font-size: 1rem;
    color: #15803d;
}

.resultado-tiempo[b-11ko4985vd] {
    font-size: 0.85rem;
    color: #166534;
    margin-top: 0.25rem;
}

.resultado-error[b-11ko4985vd] {
    font-weight: 600;
    color: #dc2626;
    font-size: 0.9rem;
}

.spinner[b-11ko4985vd] {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-11ko4985vd 0.7s linear infinite;
    display: inline-block;
}

@keyframes spin-b-11ko4985vd {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn-b-11ko4985vd {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .vigilante-wrapper[b-11ko4985vd] {
        padding: 1rem 0.75rem;
    }

    .vigilante-header h1[b-11ko4985vd] {
        font-size: 1.2rem;
    }
}

.persona-encontrada[b-11ko4985vd] {
    background: #f0f9ff;
    border: 1.5px solid #bae6fd;
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.persona-nombre[b-11ko4985vd] {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0369a1;
}

.persona-dni[b-11ko4985vd] {
    font-size: 0.82rem;
    color: #0284c7;
    margin-top: 0.2rem;
}

.botones-confirmacion[b-11ko4985vd] {
    display: flex;
    gap: 0.75rem;
}

.btn-cancelar[b-11ko4985vd] {
    flex: 1;
    padding: 0.85rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-cancelar:hover[b-11ko4985vd] {
        border-color: #cbd5e1;
        background: #f8fafc;
    }

.btn-accion[b-11ko4985vd] {
    flex: 2;
}
