/* Global Form & Input styling to prevent black backgrounds on dark mode / autofill */
input, textarea, select {
    background-color: #ffffff !important;
    color: #1e293b !important;
    color-scheme: light !important;
}

input::placeholder, textarea::placeholder {
    color: #94a3b8 !important;
}

/* Fix browser autofill styling (Chrome, Safari, Edge) */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    -webkit-text-fill-color: #1e293b !important;
    box-shadow: 0 0 0 1000px #ffffff inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    color-scheme: light;
}
