body {
  font-family: 'Prompt', sans-serif;
  background-color: #f4f9fc;
}

.banner {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 0 0 8px 8px;
}

.title-bar {
  background: linear-gradient(90deg, #003366, #0055aa);
  color: white;
  padding: 18px;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
}

#clearSearch:hover {
  color: #333;
}

.form-check-label {
  font-weight: 500;
}

.table {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.table thead th {
  vertical-align: middle;
  font-weight: bold;
  background: linear-gradient(90deg, #003366, #0055aa);
  color: white;
}

.table tbody tr:hover {
  background-color: #f2f7ff;
}

.btn-outline-success,
.btn-outline-primary {
  min-width: 140px;
  font-weight: 500;
  border-radius: 10px;
  transition: 0.2s;
}

.btn-outline-primary {
  border-color: #003366;
  color: #003366;
}

.btn-outline-primary:hover {
  background-color: #003366;
  color: white;
}

.bg-light {
  background-color: #f8f9fa !important;
  border-radius: 10px;
}

/* === Pagination & Limit Select Container === */
.table-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

/* === Pagination Style === */
.pagination {
  margin: 0;
}

.pagination .page-link {
  color: #003366;
  border-radius: 8px;
  margin: 0 2px;
  font-weight: 500;
  padding: 4px 10px;
}

.pagination .page-item.active .page-link {
  background-color: #ff69b4; /* pink */
  border-color: #ff69b4;
  color: white;
}

.pagination .page-link:hover {
  background-color: #003366;
  color: white;
}

/* === Limit Select Style === */
#limitSelect {
  border-radius: 8px;
  border: 1px solid #
