/* Custom Styles not covered by Tailwind */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
.dark ::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1; 
    border-radius: 4px;
}
.dark ::-webkit-scrollbar-thumb {
    background: #4b5563;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8; 
}

/* Radio button hidden label styling overrides */
input[type="radio"]:checked + div, input[type="checkbox"]:checked + div {
    /* Tailwind handles most of this now, but good to have fallback/specifics if needed */
}
