/* custom.css - overrides / custom styling */

.feedback-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(15, 118, 110, 0.35);
  z-index: 1080;
  transition: transform .15s ease, box-shadow .15s ease;
}

.feedback-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 118, 110, 0.42);
}
