.admin-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.45);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-fab:hover {
  background: #1d4ed8;
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.55);
}

.admin-fab--preview,
.admin-fab--preview:link,
.admin-fab--preview:visited,
.admin-fab--preview:hover,
.admin-fab--preview:active {
  width: auto;
  min-width: 52px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.admin-fab--quick-save {
  bottom: 92px;
  width: auto;
  min-width: 52px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: none;
  background: #16a34a;
  box-shadow: 0 4px 18px rgba(22, 163, 74, 0.45);
}

.admin-fab--quick-save:hover {
  background: #15803d;
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(22, 163, 74, 0.55);
}
