/* Common CSS shared across multiple pages */

/* Custom scrollbar for dark mode (used in product and contact-us pages) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #101723;
}

::-webkit-scrollbar-thumb {
    background: #223149;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3c83f6;
}

/* Remove default select arrow for all browsers */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Remove default arrow in IE */
select::-ms-expand {
    display: none;
}

/* Glass navigation effect */
.glass-nav {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}