html,
body {
    font-family: "Inter" !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;
}


.logger-scroll::-webkit-scrollbar {
    width: 6px;
}

.logger-scroll::-webkit-scrollbar-track {
    background: #0f172a;
}

.logger-scroll::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 3px;
}

.no-select {
    user-select: none;
}

@keyframes progress-loading {
    0% {
        left: -100%;
        width: 50%;
    }

    50% {
        left: 25%;
        width: 75%;
    }

    100% {
        left: 100%;
        width: 50%;
    }
}

.animate-progress {
    position: relative;
    overflow: hidden;
}

.animate-progress::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #3b82f6;
    /* Blue-500 */
    animation: progress-loading 1.5s infinite linear;
    width: 100%;
}