/* ── Tipografía base ─────────────────────────────────── */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Scrollbar personalizado ─────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ── Sidebar scrollbar más sutil ─────────────────────── */
aside ::-webkit-scrollbar-thumb {
    background: #334155;
}
aside ::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* ── Transición suave en links de nav ────────────────── */
aside nav a {
    transition: background-color 0.15s ease, color 0.15s ease;
}

/* ── Tabla: celdas numéricas alineadas ───────────────── */
.font-mono {
    font-variant-numeric: tabular-nums;
}

/* ── Input date sin ícono nativo en algunos browsers ─── */
input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.5;
    cursor: pointer;
}

/* ── Animación del reloj en el header ────────────────── */
#clock {
    font-variant-numeric: tabular-nums;
}

/* ── Select con apariencia consistente ───────────────── */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25em;
    padding-right: 2.5rem !important;
}

/* ── Login: animación de fondo ───────────────────────── */
@keyframes blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(20px, -20px) scale(1.05); }
    66%       { transform: translate(-15px, 15px) scale(0.95); }
}
.animate-blob {
    animation: blob 9s ease-in-out infinite;
}
.animation-delay-2000 {
    animation-delay: 2s;
}

/* ── Hover row en tablas ─────────────────────────────── */
tbody tr {
    transition: background-color 0.1s ease;
}

/* ── Badge / pill para orígenes ─────────────────────── */
.badge {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* ── Gráficos responsive ─────────────────────────────── */
canvas {
    max-width: 100%;
}

/* ── Focus visible global ────────────────────────────── */
:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}
