/* Frontend Toggle Button */
.simple-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(99, 102, 241, .25);
  transition: transform .08s ease, box-shadow .2s ease, opacity .2s ease;
}
.simple-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(99, 102, 241, .28);
}
.simple-toggle:active {
  transform: translateY(0);
}

/* Optional Diff Markup (falls genutzt) */
.simple-diff .ins { background: #ecfdf5; color: #065f46; padding: .05em .2em; border-radius: 4px; }
.simple-diff .del { background: #fef2f2; color: #991b1b; padding: .05em .2em; border-radius: 4px; text-decoration: line-through; }
