body {
            font-family: Vazir, Arial, sans-serif;
            direction: rtl;
            text-align: right;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 20px auto;
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        h1 {
            text-align: center;
            margin-bottom: 20px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }
        table, th, td {
            border: 1px solid #ddd;
        }
        th, td {
            padding: 12px;
            text-align: center;
        }
        th {
            background-color: #f2f2f2;
            color: #333;
        }
        tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        tr:hover {
            background-color: #f1f1f1;
        }
        .form-group {
            margin-bottom: 15px;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        .form-group input {
            width: 100%;
            padding: 8px;
            box-sizing: border-box;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        .form-group button {
            padding: 10px;
            background-color: #007bff;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
        }
        .form-group button:hover {
            background-color: #0056b3;
        }
        .edit-form {
            display: none;
            margin-top: 10px;
        }
        /* استایل برای دکمه‌ها */
button {
    font-family: Vazir, Arial, sans-serif;
    background-color: #4CAF50; /* رنگ پس‌زمینه */
    border: none; /* حذف حاشیه */
    color: white; /* رنگ متن */
    padding: 10px 20px; /* فضای داخلی */
    text-align: center; /* تراز متن */
    text-decoration: none; /* حذف زیرخط */
    display: inline-block; /* نمایش به صورت بلوک درون‌خطی */
    font-size: 12px; /* اندازه فونت */
    margin: 4px 2px; /* حاشیه */
    cursor: pointer; /* تغییر ظاهر موس */
    border-radius: 4px; /* گوشه‌های گرد */
    transition: background-color 0.3s ease; /* انیمیشن تغییر رنگ */
}

button:hover {
    background-color: #45a049; /* رنگ پس‌زمینه در حالت هاور */
}

.delbutton {
    font-family: Vazir, Arial, sans-serif;
    background-color: #af4c4c;
    border: none; /* حذف حاشیه */
    color: white; /* رنگ متن */
    padding: 10px 20px; /* فضای داخلی */
    text-align: center; /* تراز متن */
    text-decoration: none; /* حذف زیرخط */
    display: inline-block; /* نمایش به صورت بلوک درون‌خطی */
    font-size: 12px; /* اندازه فونت */
    margin: 4px 2px; /* حاشیه */
    cursor: pointer; /* تغییر ظاهر موس */
    border-radius: 4px; /* گوشه‌های گرد */
    transition: background-color 0.3s ease; /* انیمیشن تغییر رنگ */
}

.delbutton:hover {
    background-color: #a22424; /* رنگ پس‌زمینه در حالت هاور */
}
/* استایل برای منوهای انتخاب */
select {
    font-family: Vazir, Arial, sans-serif;
    width: 60%; /* عرض کامل */
    padding: 10px; /* فضای داخلی */
    margin: 4px 0; /* حاشیه بالا و پایین */
    border: 1px solid #ccc; /* حاشیه */
    border-radius: 4px; /* گوشه‌های گرد */
    background-color: #f8f8f8; /* رنگ پس‌زمینه */
    font-size: 12px; /* اندازه فونت */
}

select:focus {
    border-color: #4CAF50; /* رنگ حاشیه هنگام فوکوس */
    outline: none; /* حذف outline پیش‌فرض */
}
input[type="text"],
input[type="password"],
select,
textarea {
    font-family: 'Vazir', Arial, sans-serif !important;
}