html, body {
    font-family: "Vazirmatn" !important;
    direction: rtl;
    text-align: right;
    overflow-x: hidden !important;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

::-webkit-scrollbar {
    display: none;
}

*,
.mud-typography,
.mud-button,
.btn,
.card,
input,
select,
textarea,
label,
.modal,
.toast,
.dropdown-item {
    font-family: "Vazirmatn" !important;
}


#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #2456ff;
    border-top-color: #f3f3f3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: #222222;
    margin-top: 15px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}