/* * Delari Measure - Custom Styles
 * Most styling is handled by Tailwind CSS in index.html.
 * This file is reserved for global overrides and custom elements.
 */

/* Enable smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Prevent any accidental horizontal scrolling */
body {
    overflow-x: hidden;
}

/* Custom Scrollbar for a premium desktop feel */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f8fafc; 
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}