.admin-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: -apple-system, 'SF Pro Display', BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

.admin-fab-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #1d1d1f;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform .15s, box-shadow .15s;
  position: relative;
  z-index: 2;
}
.admin-fab-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
}

.admin-fab-menu {
  position: absolute;
  bottom: 58px;
  right: 0;
  background: #fff;
  border: 1px solid #e5e5e7;
  border-radius: 14px;
  padding: 6px;
  min-width: 210px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  display: none;
  flex-direction: column;
  gap: 2px;
}
.admin-fab.open .admin-fab-menu { display: flex; }

.admin-fab-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: #1d1d1f;
  text-decoration: none;
  transition: background .12s;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.admin-fab-item:hover { background: #f5f5f7; }
.admin-fab-item svg   { flex-shrink: 0; opacity: .6; }

.admin-fab-item-danger { color: #ff3b30; }
.admin-fab-item-danger svg { opacity: 1; }
.admin-fab-item-danger:hover { background: #fff0f0; }

.admin-fab-sep {
  height: 1px;
  background: #e5e5e7;
  margin: 4px 0;
}
