/* Dark Circular Pagination Styles */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pagination .page-item {
  display: block;
}

.pagination .page-item.active .page-link {
  background: linear-gradient(144deg, #DA1A47 0%, #e3672c 100%);;
  color: #fff;
  border: none;
  box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
}

.pagination .page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #404040;
  border: none;
}

.pagination .page-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  background-color: #404040;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease-in-out;

}

.pagination .page-item:not(.active) .page-link:hover {
  background-color: #555;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.pagination .page-link:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.5);
}

/* Remove default link styling */
.pagination a {
  text-decoration: none;
}

.pagination a:hover {
  text-decoration: none;
}

/* Navigation arrows */
.pagination .page-link.nav-arrow {
  font-size: 16px;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .pagination .page-link {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
  
  .pagination {
    gap: 0.25rem;
    padding: 0.75rem;
  }
}
