/* الشريط الجانبي الأبيض */
.main-sidebar {
  background-color: #ffffff !important;
  border-right: 1px solid #e0e0e0;
}

/* روابط الشريط الجانبي */
.nav-sidebar .nav-link {
  color: #3C6255 !important;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* عند المرور على الرابط */
.nav-sidebar .nav-link:hover {
  background-color: #EEF3F0 !important;
  color: #2B4A3B !important;
}

/* عند تفعيل الرابط */
.nav-sidebar .nav-link.active {
  background-color: #3C6255 !important;
  color: #ffffff !important;
  font-weight: 700;
}

/* لون أيقونة الرابط */
.nav-sidebar .nav-icon {
  color: #3C6255 !important;
}

/* ترويسة الصفحة */
.content-header h1 {
  color: #3C6255;
  font-weight: bold;
}

/* أزرار مخصصة */
.btn-primary {
  background-color: #3C6255;
  border-color: #3C6255;
}

.btn-primary:hover {
  background-color: #2B4A3B;
  border-color: #2B4A3B;
}

/* ترويسة الكارد */
.card-primary.card-outline {
  border-top: 3px solid #3C6255;
}

/* جدول DataTable تعديل الأزرار */
.dataTables_wrapper .dataTables_paginate .paginate_button {
  color: #3C6255 !important;
}

/* روابط Breadcrumb */
.breadcrumb-item.active {
  color: #3C6255;
}

/* تحسين الحواف */
.card,
.btn,
input,
textarea,
.select2-container--default .select2-selection--single {
  border-radius: 8px;
}

/* خط افتراضي */
body {
  font-family: 'Cairo', sans-serif;
}


.logo-part-green {
    color: #3c6255;; /* أخضر */
    font-weight: bold;
}
.logo-part-gold {
    color: #fbc02d; /* ذهبي */
}



/* css add new button */
.btn-add-new {
  background-color: #5F8670;
  color: #ffffff;
  font-weight: 500;
  border: none;
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

.btn-add-new:hover {
  background-color: #466f5b;
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.12);
}


/* css table */
  .custom-table {
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    font-family: 'Cairo', sans-serif;
  }

  .custom-table thead {
    background-color: #3c6255;
    color: #fff;
    font-size: 15px;
    text-align: center;
  }

  .custom-table tbody tr {
    transition: background-color 0.3s;
  }

  .custom-table tbody tr:hover {
    background-color: #f0f8f4;
  }

  .custom-table td,
  .custom-table th {
    vertical-align: middle !important;
    text-align: center;
    padding: 12px;
  }

  .btn-sm {
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 8px;
  }

  .btn-warning {
    background-color: #ffc107;
    border: none;
    color: #000;
  }

  .btn-danger {
    background-color: #dc3545;
    border: none;
  }

  .btn-warning:hover {
    background-color: #e0a800;
  }

  .btn-danger:hover {
    background-color: #c82333;
  }




  /* تخصيص لون السويتش إلى أخضر #3c6255 */
.custom-control-input.green-switch:checked ~ .custom-control-label::before {
  background-color: #3c6255;
  border-color: #3c6255;
}





  