/* أنماط عامة */
body {
    font-family: 'Tahoma', Arial, sans-serif;
    background-color: #f8f9fa;
}

/* تحسينات للغة العربية */
[dir="rtl"] .dropdown-menu {
    text-align: right;
}

/* تخصيصات البطاقات */
.card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
}

/* تخصيص الجداول */
.table {
    margin-bottom: 0;
}

.table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* تخصيص الأزرار */
.btn {
    border-radius: 5px;
    padding: 8px 16px;
}

/* تخصيص شريط التنقل */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* تخصيص التذييل */
footer {
    background-color: #343a40;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* تخصيصات للهواتف */
@media (max-width: 768px) {
    .navbar-nav {
        margin-top: 10px;
    }
    
    .card {
        margin-bottom: 20px;
    }
}