.capysele-button {
  display: inline-block;
  text-decoration: none;
}

.capysele-floating-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.capysele-floating-button:hover,
.capysele-floating-button:focus {
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
  .capysele-floating-button {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}
