
/* تحسينات للواجهة العربية */
[dir="rtl"] .dropdown-menu {
    text-align: right;
}

[dir="rtl"] .breadcrumb-item + .breadcrumb-item::before {
    float: right;
    padding-left: 0.5rem;
    padding-right: 0;
}

[dir="rtl"] .float-start {
    float: right !important;
}

[dir="rtl"] .float-end {
    float: left !important;
}

[dir="rtl"] .me-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}

[dir="rtl"] .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

/* تحسينات للـ navbar */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link:focus {
        color: rgba(255, 255, 255, 1);
    }

/* تحسينات للـ dropdown */
.dropdown-menu {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* تحسينات للـ breadcrumb */
.breadcrumb {
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
}

.page-title {
    color: #2c3e50;
    border-right: 4px solid #3498db;
    padding-right: 15px;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
/* في wwwroot/css/site.css */

/* ألوان البادجات حسب النوع */
.badge-primary {
    background-color: #4e73df !important;
}

.badge-info {
    background-color: #36b9cc !important;
}

.badge-warning {
    background-color: #f6c23e !important;
    color: #000 !important;
}

.badge-light {
    background-color: #f8f9fc !important;
    color: #000 !important;
    border: 1px solid #ddd;
}

.badge-secondary {
    background-color: #858796 !important;
}

.badge-dark {
    background-color: #5a5c69 !important;
}

/* ألوان الأزرار حسب النوع */
.btn-light.text-dark {
    background-color: #f8f9fa !important;
    color: #000 !important;
    border-color: #ddd !important;
}

    .btn-light.text-dark:hover {
        background-color: #e2e6ea !important;
        border-color: #dae0e5 !important;
    }

/* تحسين عرض الجدول */
.table-danger {
    background-color: #f8d7da;
}

.table-warning {
    background-color: #fff3cd;
}

.table-success {
    background-color: #d4edda;
}

/* تحسين عرض النصوص في البادجات */
.badge {
    font-weight: 600;
    padding: 0.4em 0.8em;
}

/* تحسين تجربة البحث */
input[name="search"] {
    border-radius: 0.25rem 0 0 0.25rem;
}

/* تنسيق الروابط */
a.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* تنسيق الأزرار العمودية */
.btn-group-vertical .btn {
    margin-bottom: 0.25rem;
}

/* تنسيق رسالة عدم وجود نتائج */
.text-center.py-5 {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}