/* ==========================================
   ESTILOS PERSONALIZADOS - ANTENAS FORENSE
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Estilos base por defecto (Modo Claro) */
body {
    background-color: #f1f5f9; /* Fondo claro general */
    color: #0f172a;           /* Texto oscuro general */
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    height: 100vh;
    overflow: hidden;
}

/* Estilos cuando el documento tiene la clase .dark */
.dark body {
    background-color: #0b0f19;
    color: #f8fafc;
}

/* Scrollbar dual */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}
.dark ::-webkit-scrollbar-thumb {
    background: #1e293b;
}

/* Scrollbar personalizado delgado y oscuro */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #090d16;
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #334155;
}