html,
body {
    font-family: "Poppins" !important;
    overflow: scroll !important;
    overflow-x: hidden !important;
}

::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
}

::-webkit-scrollbar-thumb {}

input[type="search"]::-webkit-search-cancel-button {
    display: none !important;
}

input[type="search"]::-moz-search-cancel-button {
    display: none !important;
}

.radio-styled {
    outline: none !important;
}

.radio-styled:focus-visible {
    outline: 2px solid currentColor !important;
    outline-offset: 2px !important;
}

.checkbox-styled {
    outline: none !important;
}

.checkbox-styled:focus-visible {
    outline: 2px solid currentColor !important;
    outline-offset: 2px !important;
}

/* Modal Animations */
@keyframes modal-slide-up {
    0% {
        transform: translateY(30px) scale(0.95);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.animate-modal-slide-up {
    animation: modal-slide-up 0.4s cubic-bezier(0.05, 0.89, 0.25, 1.02) forwards;
}
