/* Custom Styles Overrides */

/* Custom Smooth Transitions */
.transition-all {
    transition-duration: 300ms;
}

/* Custom Gradients if needed */
.bg-gradient-blue {
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
}

/* Form focus ring color */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
