.donation-handle-clickable {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  padding: 15px;
}

.donation-handle-hover {
  transform: scale(1.02);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
}

.donation-handle-clicked {
  transform: scale(0.98);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 123, 255, 0.05);
  transition: all 0.1s ease;
}

.donation-handle-wrapper {
  position: relative;
}

.donation-handle-wrapper .btn-donate {
  position: relative;
  z-index: 2;
}