:root {
    color-scheme: light;

    /* PRODAO brand tokens (reference; styling is driven by Tailwind theme config) */
    --prodao: #2780C4;
    --prodao-dark: #1B3B5F;
    --app-bg: #F8FAFC;
    --text-primary: #0F172A;
    --text-secondary: #64748B;
    --border: #E2E8F0;
}

html {
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Subtle, neutral scrollbars to match the enterprise console look */
* {
    scrollbar-width: thin;
    scrollbar-color: #CBD5E1 transparent;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-thumb {
    background-color: #CBD5E1;
    border-radius: 9999px;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #94A3B8;
}

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