
@font-face {
    font-family: 'Vazirmatn';
    src: url('../fonts/vazirmatn/Vazirmatn-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}


html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}
body {
    
    font-family: 'Vazirmatn', sans-serif;
    background-color: #ffffff;
    color: #333;
    direction: rtl;
}


/* استایل مودال خطا */
.error-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.error-modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 80%;
    width: 400px;
    text-align: center;
    direction: rtl;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.error-modal-content h3 {
    color: #d32f2f;
    margin-top: 0;
    margin-bottom: 15px;
}

.error-modal-button {
    background-color: #d32f2f;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
}

.error-modal-button:hover {
    background-color: #b71c1c;
}




