.bottom-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 24px 0 24px 0;
  z-index: 9000;
  border-top: 1px solid #f81775;
}

.bottom-buttons-inner {
  display: flex;
  gap: 25px;
}

.bottom-btn {
  padding: 10px 30px;
  font-weight: bold;
  background: #f81775;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid #f81775;
  transition: background 0.3s, color 0.3s, border 0.3s;
}

.bottom-btn:active,
.bottom-btn.active {
  background: #fff !important;
  color: #f81775 !important;
  border: 2px solid #000 !important;
}

.bottom-btn:hover {
  background: #fff;
  color:  #f81775;
  border: 2px solid #000;
}

.bottom-btn i {
  margin-right: 5px;
}

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

.pagination button {
  background: transparent;
  border: 1px solid #f81775;
  color: #f81775;
  padding: 4px 6px;
  margin: 1px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 10px;
}

.pagination button.active {
  background: #f81775;
  color: #fff;
  font-weight: bold;
  border: 2px solid #f81775;
}

.pagination button:hover:not(.active) {
  background: #f81775;
  color: #fff;
}

button.prev,
button.next {
  background: none;
  border: none;
  padding: 0;
  margin: 0 8px;
  font-size: 16px;
  color: #f81775;
  cursor: pointer;
}

button.prev:hover,
button.next:hover {
  text-decoration: underline;
  color: #fff;
}

