/* Custom CSS Styles */

/* Modern Pagination Styles */
.pagination .page-link {
  border: none;
  background-color: #f8f9fa;
  color: #5a5c69;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background-color: #e2e6ea;
  color: #3a3b45;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pagination .page-item.active .page-link {
  background-color: #696cff;
  color: white;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(105, 108, 255, 0.3);
}

.pagination .page-item.disabled .page-link {
  background-color: #f8f9fa;
  color: #c2c2c2;
}

/* Hover effects */
.hover-bg-primary-subtle:hover {
  background-color: rgba(105, 108, 255, 0.1) !important;
}

/* Utility classes */
.bg-primary-subtle {
  background-color: rgba(105, 108, 255, 0.1) !important;
}

/* Rounded pagination for modern look */
.pagination-rounded .page-link {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0 3px;
}

/* Animation effects */
.pagination .page-link {
  position: relative;
  overflow: hidden;
}

.pagination .page-link:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.pagination .page-link:active:after {
  transform: translate(-50%, -50%) scale(2);
  opacity: 1;
  transition: transform 0.2s ease, opacity 0.1s ease;
}
