body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#f4f6f9;
    display:flex;
}

.sidebar{
    width:260px;
    background:#1f2937;
    color:white;
    min-height:100vh;
    padding:20px;
    position:sticky;
    top:0;
}

.sidebar h2{
    text-align:center;
    margin-bottom:30px;
}

.sidebar ul{
    list-style:none;
    padding:0;
}

.sidebar li{
    padding:12px;
    margin-bottom:10px;
    cursor:pointer;
    border-radius:8px;
}

.sidebar li:hover{
    background:#374151;
}

.contenido{
    flex:1;
    padding:30px;
}

.dashboard{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.tarjeta{
    background:white;
    padding:20px;
    border-radius:12px;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
    text-align:center;
}

.tarjeta h2{
    font-size:18px;
}

.tarjeta p{
    font-size:32px;
    font-weight:bold;
}

.sidebar a{
    color:white;
    text-decoration:none;
    display:block;
}

.sidebar a:hover{
    color:#60a5fa;
}

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.status{
    background:#dcfce7;
    color:#166534;
    padding:10px 20px;
    border-radius:20px;
    font-weight:bold;
}

.dashboard{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-bottom:30px;
}

.tarjeta{
    background:white;
    border-radius:12px;
    padding:20px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.tarjeta h3{
    margin:0;
    font-size:16px;
}

.tarjeta p{
    font-size:34px;
    font-weight:bold;
    margin-top:15px;
}

.panel{
    background:white;
    border-radius:12px;
    padding:20px;
    margin-bottom:30px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.workflow{
    padding:12px;
    border-bottom:1px solid #eee;
}

.alertas{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.alerta{
    background:#fef2f2;
    color:#991b1b;
    padding:15px;
    border-radius:10px;
    font-weight:bold;
}

.topbar{
    background:white;
    padding:15px 25px;
    border-radius:12px;
    margin-bottom:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.busqueda{
    width:350px;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:14px;
}

.acciones{
    display:flex;
    gap:25px;
    font-weight:bold;
}

.actividad-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:30px;
}

.actividad-panel{
    background:white;
    border-radius:12px;
    padding:20px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.actividad-panel h3{
    margin-top:0;
    margin-bottom:15px;
}

.evento{
    padding:12px;
    border-bottom:1px solid #eee;
}

.acciones-dia{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
    margin-bottom:30px;
}

.accion-card{
    background:white;
    border-radius:12px;
    padding:20px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.accion-card h3{
    margin-top:0;
}

.accion-card button{
    margin-top:10px;
    padding:10px 15px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    background:#2563eb;
    color:white;
}

.vacantes-top{
    background:white;
    padding:20px;
    border-radius:12px;
    margin-bottom:30px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.vacante-item{
    display:flex;
    justify-content:space-between;
    margin-top:15px;
    margin-bottom:8px;
    font-weight:bold;
}

.barra{
    width:100%;
    height:12px;
    background:#e5e7eb;
    border-radius:20px;
    overflow:hidden;
}

.progreso{
    height:100%;
    background:#2563eb;
}

.tabla-panel{
    background:white;
    border-radius:12px;
    padding:20px;
    margin-bottom:30px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

table{
    width:100%;
    border-collapse:collapse;
}

th{
    text-align:left;
    padding:15px;
    background:#f3f4f6;
}

td{
    padding:15px;
    border-bottom:1px solid #eee;
}

.estado{
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:bold;
}

.confirmado{
    background:#dcfce7;
    color:#166534;
}

.pendiente{
    background:#fef3c7;
    color:#92400e;
}

.acciones-rapidas{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:30px;
}

.btn-accion{
    background:white;
    border:none;
    padding:15px 25px;
    border-radius:12px;
    cursor:pointer;
    font-weight:bold;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    transition:.2s;
}

.btn-accion:hover{
    transform:translateY(-2px);
}

.filtros{
    display:flex;
    gap:10px;
    margin-bottom:20px;
}

.filtro-btn{
    border:none;
    background:white;
    padding:10px 18px;
    border-radius:10px;
    cursor:pointer;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.accion-mini{
    border:none;
    background:#f3f4f6;
    padding:8px;
    border-radius:8px;
    cursor:pointer;
    margin-right:5px;
}

/* =========================
   CONFIGURACIÓN
========================= */

.dashboard-config .tarjeta{
    min-height:240px;
    text-align:center;
}

.dashboard-config .tarjeta h3{
    font-size:22px;
    margin-bottom:15px;
}

.dashboard-config .tarjeta p{
    font-size:18px;
    font-weight:500;
    line-height:1.5;
    margin-top:10px;
}

.dashboard-config .btn-accion{
    margin-top:auto;
}

.filtros-candidatos{

    display:flex;
    gap:15px;
    margin-bottom:20px;
    flex-wrap:wrap;

}

.filtro-card{

    background:white;
    border-radius:12px;
    padding:7px 18px;
    cursor:pointer;

    box-shadow:
        0 2px 10px rgba(
            0,0,0,0.08
        );

    font-weight:500;
    line-height:1.5;
    margin-top:10px;

    transition:0.2s;

}

.filtro-card:hover{

    transform:translateY(-2px);

    box-shadow:
        0 5px 15px rgba(
            0,0,0,0.12
        );

}

.acciones-capacitacion{

    display:flex;
    gap:12px;
    flex-wrap:wrap;

}

.btn-operativo{

    border:none;

    border-radius:12px;

    padding:12px 18px;

    cursor:pointer;

    background:white;

    font-weight:600;

    box-shadow:
        0 2px 10px rgba(
            0,0,0,0.08
        );

    transition:0.2s;

}

.btn-operativo:hover{

    transform:translateY(-2px);

}