/* ============================================
   Installer - Minimal Custom Overrides
   Flowbite v4 handles all base styles via CDN
   ============================================ */

/* Smooth scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #D4D4D4 #F5F5F5;
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #F5F5F5; }
::-webkit-scrollbar-thumb { background: #D4D4D4; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #A3A3A3; }

/* Focus states */
:focus-visible {
    outline: 2px solid #2563EB;
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: #EFF6FF;
    color: #1D4ED8;
}