html, body {
    font-family: 'Sans Serif Collection', sans-serif !important;
}

.custom-autocomplete-options .mud-list-item {
    font-size: 0.5rem; 
}

.form-control {
    width: 100%;
    padding: 6px;
}


.top-bar {
    background: linear-gradient(90deg, rgba(225,0,137,1) 35%, rgba(0,212,255,1) 100%);
    background-size: 400% 400%;
    animation: gradient 8s ease infinite;
}


@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.gradient-heading {
    font-size: 28px;
    background: -webkit-linear-gradient(#fff, #b6ff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.error-message {
    width: 130px;
    font-weight: 500;
}