
/* Basic FAB styles */.fab-container { position: fixed; right: 20px; bottom: 20px; z-index: 1000; }
.fab {
  width: 56px; height: 56px; border-radius: 50%;
  background: #880E4F; color: #fff; border: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.fab:active { transform: scale(0.96); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

.fab-menu {
  list-style: none; margin: 0; padding: 0;
  position: absolute; right: 0; bottom: 70px;
  display: flex; flex-direction: column; gap: 10px;
}
.fab-item {
  display: inline-flex; align-items: center; gap: 8px;
  background: #c7c6c6; color: #333; padding: 8px 12px;
  border-radius: 6px; text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform-origin: right center; opacity: 0; transform: translateY(8px) scale(0.96);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

/* When menu is shown (JS toggles .open on container) */
.fab-container.open .fab-menu .fab-item { opacity: 1; transform: translateY(0) scale(1); }