
/* css/style.css */
body {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    text-align: right;
  }
  .navbar-brand {
    font-weight: bold;
  }
  .page-title {
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
  }
  .table-custom thead {
    background-color: #6c757d; /* لون رأس الجدول */
    color: #fff;
  }
  .table-custom tbody tr:nth-child(even) {
    background-color: #f2f2f2;
  }
  .table-custom tbody tr:hover {
    background-color: #dcdcdc;
  }
  .table.table-bordered > :not(caption) > * > * {
    border-color: #ccc; /* لون حدود الجدول */
  }
  .img-thumbnail {
    border: 1px solid #dee2e6;
    padding: 2px;
    border-radius: 4px;
  }
  
  