
/* ===================================
   Go Back Link
=================================== */
.goback-link {
  display: inline-block;
  font-size: 0.9rem;
  color: #6c757d;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.goback-link:hover {
  color: #007bff;
  text-decoration: underline;
}

/* ===================================
   Pagination Container
=================================== */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  margin: 20px 0;
  padding: 0;
}

/* Pagination Links */
.pagination li {
  margin: 0 5px;
}

.pagination a, .pagination span {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #6c63ff;
  font-size: 16px;
  border-radius: 5px;
  background-color: #f8fafb;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Pagination Links: hover */
.pagination a:hover, .pagination span:hover {
  background-color: #6c63ff;
  color: white;
}

/* Active and Disabled Pages */
.pagination .active a {
  background-color: #6c63ff;
  color: white;
}

.pagination .disabled a, .pagination .disabled span {
  color: #b3b3b3;
  background-color: #e6e6e6;
  pointer-events: none;
}

.pagination .disabled a:hover, .pagination .disabled span:hover {
  background-color: #e6e6e6;
  color: #b3b3b3;
}

/* Responsive Design for Pagination */
@media (max-width: 767px) {
  .pagination a, .pagination span {
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* Ensure buttons on the page like search and other buttons are not affected */
input[type="text"].form-control, .input-group-append button, .btn {
  /* Use more specific classes or ids to prevent the global .btn from being affected */
  font-size: 14px; /* Adjust as needed */
  padding: 10px 15px;
}

