/* Pagination Container */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

/* Pagination Links */
.pagination .page-link {
  color: #333;
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid #ccc;
  margin: 0 4px;
  transition: background-color 0.3s;
  background-color: #fff;
  border-radius: 4px;
  /* Add Square Pagination Numbers */
  border-radius: 0;
  /* Add Padding to Pagination Numbers */
  padding: 10px 15px;
}

/* Current Page Link */
.pagination .page-item.active .page-link {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

/* Add Spacing between Pagination Numbers */
.pagination .page-link:not(.disabled) {
  margin: 0 4px;
}

/* Add Padding to Pagination Numbers */
.pagination .page-link:not(.disabled) span {
  padding: 3px 6px;
}

.tips {
  font-size: 12px; /* Adjust the font size as needed */
  color: #999999; /* Adjust the color as needed */
  display: block;
  margin-top: 5px; /* Add space between the input and tips text */
}

.search-container {
  display: flex;
  align-items: center;
}

.search-container input {
  margin-right: 10px; /* Add space between the search box and search button */
}
