/* تحديد الاتجاه من اليمين إلى اليسار */
body {
    direction: rtl;
    text-align: right;
    font-family: 'Tahoma', 'Arial', sans-serif;
}

/* جعل الجداول تدعم RTL */
table {
    direction: rtl;
    width: 100%;
    border-collapse: collapse;
}

/* تنسيق الحقول النصية */
input, select, textarea {
    text-align: right;
    padding: 5px;
    font-size: 16px;
}

/* تحسين تصميم الأزرار */
button {
    background-color: #008CBA;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #005f73;
}
