body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f6f8;
}

.header {
    background: #003480;
    color: #fff;
    padding: 15px 20px;
}

.header h1 {
    margin: 0;
}

.contenedor {
    padding: 20px;
}

.tabla-documentos {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.tabla-documentos th,
.tabla-documentos td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.tabla-documentos th {
    background: #f1f5f9;
}

.estatus {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
}

.PENDIENTE {
    background: #fde68a;
    color: #92400e;
}

.APROBADO {
    background: #bbf7d0;
    color: #166534;
}

.RECHAZADO {
    background: #fecaca;
    color: #991b1b;
}

.btn {
    padding: 6px 10px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    margin-right: 5px;
    font-size: 13px;
}

.ver {
    background: #3b82f6;
    color: #fff;
}

.aprobar {
    background: #22c55e;
    color: #fff;
}

.rechazar {
    background: #ef4444;
    color: #fff;
}

.cerrar {
    background: #64748b;
    color: #fff;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    padding: 20px;
    width: 400px;
    border-radius: 6px;
}

.modal textarea {
    width: 100%;
    height: 100px;
    margin-top: 10px;
}

.acciones-modal {
    text-align: right;
    margin-top: 15px;
}


.top-resumen{
    display:flex;
    gap:20px;
    margin-bottom:25px;
    flex-wrap:wrap;
}

.card-colaborador{
    flex:1;
    min-width:320px;

    display:flex;
    gap:18px;
    align-items:center;

    background:#fff;
    padding:20px;
    border-radius:10px;

    box-shadow:0 4px 12px rgba(0,0,0,.05);
}

.avatar{
    width:60px;
    height:60px;
    border-radius:50%;

    background:#003480;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:26px;
}

.info strong{
    font-size:18px;
    display:block;
    margin-bottom:6px;
}


.grid-info{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:6px;
    font-size:14px;
    color:#475569;
}

.card-progreso{
    width:320px;

    background:#fff;
    padding:20px;
    border-radius:10px;

    box-shadow:0 4px 12px rgba(0,0,0,.05);
}
.progreso-header{
    display:flex;
    justify-content:space-between;
    margin-bottom:12px;

    font-size:14px;
    color:#334155;
}
.barra{
    width:100%;
    height:10px;
    background:#e2e8f0;
    border-radius:20px;
    overflow:hidden;
}

#docsBar{
    height:100%;
    width:0%;

    background:linear-gradient(90deg,#22c55e,#4ade80);

    transition:width .4s ease;
}




