/* Icon Buttons Styles */
.icon-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
  padding: 0 5px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--rio-primary-contrast-80);
  color: var(--rio-muted);
  transition: all 0.3s ease;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.icon-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: var(--rio-primary-contrast);
}

.icon-btn .lucide-icon {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .icon-btn {
    width: 50px;
    height: 50px;
  }
  
  .icon-buttons {
    gap: 8px;
    margin: 10px auto;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .icon-btn {
    width: 45px;
    height: 45px;
  }
  
  .icon-btn .lucide-icon {
    width: 20px;
    height: 20px;
  }
  
  .icon-buttons {
    gap: 6px;
    max-width: 250px;
  }
}
