/* 
 * Finansowy Umysł - Main Stylesheet 
 * Most styles are handled via Tailwind CSS utility classes in HTML.
 * This file is for custom overrides that cannot be easily done with utility classes.
 */

:root {
    --brand-primary: #0F172A;
    --brand-accent: #F59E0B;
}

/* Enhancing scrollbar for Webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #CBD5E1; 
    border-radius: 4px;
}

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