/* Custom global overrides for Eurobatch Website */

/* Smooth scroll handling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar matching industrial theme */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f172a; /* Slate 900 */
}

::-webkit-scrollbar-thumb {
    background: #475569; /* Slate 600 */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f97316; /* Brand Orange */
}

/* Custom selections colors */
::selection {
    background-color: #f97316;
    color: white;
}

/* Header transition details */
#main-header {
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
