

/* Container for search box and controls */
.table-controls-container {
  display: flex;
  justify-content: center;  /* center horizontally */
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

/* Search box styling */
.table-search-box {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: 2px solid #0073aa;
  border-radius: 4px;
  width: 250px;
  max-width: 90vw;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.table-search-box:focus {
  outline: none;
  border-color: #005177;
  box-shadow: 0 0 6px #005177aa;
}

/* Rows per page selector styling */
.rows-per-page-wrapper {
  font-size: 0.9rem;
  color: #333;
}

.rows-per-page-selector {
  margin-left: 0.5rem;
  padding: 0.3rem 0.6rem;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  cursor: pointer;
}

.rows-per-page-selector:hover {
  border-color: #0073aa;
}

/* No results message styling */
.no-results-message {
  color: #d63638;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  margin: 0.5rem 0 1rem;
}

/* Pagination container */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

/* Pagination buttons */
.pagination-button {
  background-color: #0073aa;
  border: none;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  min-width: 32px;
  text-align: center;
  user-select: none;
}

.pagination-button:hover:not(.active) {
  background-color: #005177;
}

.pagination-button.active {
  background-color: #004466;
  cursor: default;
  font-weight: 700;
  box-shadow: 0 0 5px #004466cc;
}

