/* static/assets/css/main.css */

/* Custom Text Selection */
::selection {
    background-color: #bfdbfe; /* Tailwind blue-200 */
    color: #1e3a8a; /* Tailwind blue-900 */
}

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

::-webkit-scrollbar-track {
    background: #f8fafc; /* Tailwind slate-50 */
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1; /* Tailwind slate-300 */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; /* Tailwind slate-400 */
}

/* Form input autofill style overrides to match Tailwind theme */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
    -webkit-text-fill-color: #0f172a !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Ensure smooth scrolling across the entire document */
html {
    scroll-behavior: smooth;
}