/* Custom Utilities & Micro-animations */

/* Custom Scrollbar for disclaimer area */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9; 
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}

/* Modal animation states */
#loadingOverlay.fixed.flex {
    opacity: 1;
}

#successModal.fixed.flex {
    opacity: 1;
}

#successModal.fixed.flex #successModalContent {
    transform: scale(1);
}

/* Base styles for input autofill to match tailwind borders */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
