/* BCH Custom CSS */
/* Tailwind handles most styling - this file is for any custom overrides */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Ensure images don't break layout */
img {
    max-width: 100%;
    height: auto;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #F0F4F8;
}

::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b89530;
}
