/* SAF — Estilos de la aplicación */

/* ---- Variables ---------------------------------------------------------- */
:root {
    --saf-primary:   #0d6efd;
    --saf-bg:        #f8f9fa;
    --saf-sidebar:   #212529;
    --saf-text:      #343a40;
    --saf-border:    #dee2e6;
}

/* ---- Reset / base -------------------------------------------------------- */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 0.9rem;
    color: var(--saf-text);
    background: var(--saf-bg);
}

/* ---- Cards --------------------------------------------------------------- */
.card {
    border-radius: .5rem;
}

/* ---- Tablas -------------------------------------------------------------- */
.table-sm td,
.table-sm th {
    padding: .35rem .5rem;
    vertical-align: middle;
}

/* ---- Formularios --------------------------------------------------------- */
.form-label {
    font-weight: 600;
    font-size: 0.82rem;
}

/* ---- Navbar -------------------------------------------------------------- */
.navbar-brand {
    font-size: 1.1rem;
    letter-spacing: .03rem;
}

/* ---- Badges de estado ---------------------------------------------------- */
.badge-pendiente   { background-color: #ffc107; color: #000; }
.badge-aprobado    { background-color: #198754; }
.badge-rechazado   { background-color: #dc3545; }
.badge-borrador    { background-color: #6c757d; }
.badge-contabilizado { background-color: #0d6efd; }

/* ---- Montos (alineados a la derecha) ------------------------------------- */
.text-monto {
    font-family: 'Courier New', monospace;
    text-align: right;
    font-size: 0.88rem;
}

/* ---- Utilidades ---------------------------------------------------------- */
.cursor-pointer { cursor: pointer; }
.border-dashed  { border-style: dashed !important; }
.rounded-lg     { border-radius: .75rem !important; }
