.table-custom {
      border-collapse: separate;
      border-spacing: 0;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      width: 100%;
      table-layout: auto;
    }
    .table-custom thead th {
      background-color: #0d6efd;
      color: #ffffff;
      font-weight: 600;
      padding: 12px;
      text-align: left;
      border-bottom: 2px solid #dee2e6;
    }
    .table-custom tbody tr {
      background-color: #ffffff;
      transition: background-color 0.2s ease;
    }
    .table-custom tbody tr:nth-child(even) {
      background-color: #f8f9fa;
    }
    .table-custom tbody tr:hover {
      background-color: #e9ecef;
    }
    .table-custom td {
      padding: 12px;
      vertical-align: middle;
      border-bottom: 1px solid #dee2e6;
    }
    .table-custom .dropdown-menu {
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .table-custom .dropdown-item {
      padding: 8px 16px;
      font-size: 14px;
    }
    .table-custom .dropdown-item i {
      margin-right: 8px;
    }
    .department-container {
      display: flex;
      justify-content: center;
      flex-direction: column;
      margin-right: 35px;
      margin-left: 35px;
    }
    /* Responsive Styles */
    @media (max-width: 576px) {
      .department-container {
        margin-right: 15px;
        margin-left: 15px;
      }
      .table-custom {
        font-size: 14px;
      }
      .table-custom thead th,
      .table-custom td {
        padding: 8px;
      }
      .table-custom th:nth-child(3), /* Description column header */
      .table-custom td:nth-child(3) { /* Description column data */
        display: none;
      }
      .table-custom .dropdown-menu {
        min-width: 120px;
      }
      .table-custom .dropdown-item {
        font-size: 12px;
        padding: 6px 12px;
      }
      .modal-dialog {
        margin: 10px;
      }
      .modal-content {
        font-size: 14px;
      }
      .modal-body {
        padding: 15px;
      }
      .modal-footer .btn {
        padding: 6px 12px;
        font-size: 14px;
      }
      .d-flex.mb-3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }
      .btn-primary {
        width: 100%;
        text-align: center;
      }
      .pagination {
        flex-wrap: wrap;
      }
      .page-link {
        font-size: 14px;
        padding: 6px 12px;
      }
    }
    @media (min-width: 577px) and (max-width: 768px) {
      .department-container {
        margin-right: 20px;
        margin-left: 20px;
      }
      .table-custom {
        font-size: 15px;
      }
      .table-custom thead th,
      .table-custom td {
        padding: 10px;
      }
      .modal-dialog {
        max-width: 90%;
      }
      .modal-footer .btn {
        font-size: 15px;
      }
    }