/* === global.css === */
/* 
 * Este archivo contiene los estilos base, resets y configuraciones globales 
 * que aplican a TODA la aplicación (tanto el Landing como los Docs).
 */

body {
    font-family: 'Inter', sans-serif;
}

/* Custom scrollbar para una apariencia más limpia en Webkit (Chrome/Safari/Edge) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1; /* slate-300 */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; /* slate-400 */
}

/* Utilidad para ocultar scrollbars pero mantener funcionalidad (usado en tabs) */
.custom-scrollbar::-webkit-scrollbar {
    height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #475569; /* slate-600 */
    border-radius: 3px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #1e293b; /* slate-800 */
}
