/* styles.css - Custom Overrides for SF Decorating */

/* Make scrolling smooth across the whole site */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #F8F6F3; /* Soft beige background */
}

::-webkit-scrollbar-thumb {
    background: #0F1B2E; /* Navy blue scrollbar */
    border-radius: 10px;
    border: 4px solid #F8F6F3; /* Gives it a neat "floating" padded look */
}

::-webkit-scrollbar-thumb:hover {
    background: #1A2C4A; /* Slightly lighter navy when hovering over it */
}