/* 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: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: black;
}

::-webkit-scrollbar-thumb {
    background: #ffc525d2;
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e0a40bc4;
}

/* Firefox Scrollbar support */
html {
    scrollbar-width: thin;
    scrollbar-color: #ffc525b2 transparent;
}

/* Cookie Consent */
#cookie-consent.show {
    transform: translateY(0);
}