/*
 * Identidad de Kebes sobre Tabler.
 *
 * Los tres colores salen del logo oficial: el carbón del wordmark y el
 * degradado del símbolo. El naranja se reserva como acento de marca y NUNCA
 * como color semántico, para que no compita con el «warning» de Tabler.
 *
 * Este es el único fichero de estilos del proyecto. Si dos pantallas se ven
 * distintas es porque una no está usando los componentes de components/ui.
 */

:root {
    --kebes-charcoal: #1d1d1b;
    --kebes-orange: #e98b2e;
    --kebes-sage: #66bea9;
    --kebes-gradient: linear-gradient(90deg, var(--kebes-orange) 20%, var(--kebes-sage) 75%);

    /* La salvia es teal, no verde: se distingue del «success» esmeralda. */
    --tblr-primary: #66bea9;
    --tblr-primary-rgb: 102, 190, 169;
    --tblr-primary-fg: #ffffff;

    --tblr-body-color: #1d1d1b;
    --tblr-body-color-rgb: 29, 29, 27;

    /* Neutro con sesgo cálido, acorde con el carbón y el naranja. */
    --tblr-body-bg: #f7f5f1;
    --tblr-border-color: #e3ded4;
}

/* ── Marca ──────────────────────────────────────────────────────────────── */

.navbar-brand-image {
    height: 2rem;
    width: auto;
}

/* El degradado del símbolo, como filete superior de la cabecera. */
.kebes-rule {
    height: 3px;
    background: var(--kebes-gradient);
}

.kebes-accent {
    color: var(--kebes-orange);
}

/* ── Estado de un servicio ──────────────────────────────────────────────── */

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
    padding: 0.3125rem 0.5625rem;
    border-radius: 999px;
    white-space: nowrap;
}

.status-pill::before {
    content: "";
    width: 0.4375rem;
    height: 0.4375rem;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

/* ── Tablas de inventario ───────────────────────────────────────────────── */

/* Los identificadores y los importes se leen en columna: mismo ancho de dígito. */
.table td.tabular,
.table th.tabular {
    font-variant-numeric: tabular-nums;
}

.table .identifier {
    font-family: var(--tblr-font-monospace);
    font-size: 0.8125rem;
}

/* ── Accesibilidad ──────────────────────────────────────────────────────── */

:focus-visible {
    outline: 2px solid var(--kebes-sage);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
