/*
 * HID Extension — WhatsApp FAB Stylesheet
 *
 * Fixed-position floating action button in brand WhatsApp green (#25D366).
 */

/* ── FAB anchor ───────────────────────────────────────────────────────────── */
#hid-whatsapp-fab,
.hid-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

#hid-whatsapp-fab:hover,
.hid-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ── SVG icon ─────────────────────────────────────────────────────────────── */
#hid-whatsapp-fab svg,
.hid-fab svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
  display: block;
  flex-shrink: 0;
}

/* ── Mobile (≤ 600px) ─────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  #hid-whatsapp-fab,
  .hid-fab {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  #hid-whatsapp-fab svg,
  .hid-fab svg {
    width: 28px;
    height: 28px;
  }
}
