.pagination span {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.pagination span:first-child {
  padding-left: 0;
}

.pagination span:last-child {
  padding-right: 0;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@media (max-width: 640px) {
  .whatsapp-button {
    width: 56px;
    height: 56px;
    bottom: 16px;
    right: 16px;
  }
  
  .whatsapp-button svg {
    width: 28px;
    height: 28px;
  }
}