body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

/* Hide scrollbar for cleaner look if needed */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Progress Bar Animation */
@keyframes fillProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.progress-bar-fill {
    height: 100%;
    background-color: #ffcd19;
    /* Yellow matching button */
    width: 0%;
}

.animating {
    animation: fillProgress 3000ms linear forwards;
}

/* From original css.css */
.sep {
    height: 80px;
}