/* Gemeinsame Feedback-Leiste für alle Entwürfe — bewusst neutral gehalten,
   damit sie die jeweilige Design-Welt nicht verfälscht. */
.fb-leiste {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: #111418;
  color: #e8e8e8;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  padding: 0.45rem 0.75rem 0.55rem;
  border-top: 2px solid #f2a98c;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.25);
}

.fb-zeile {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.25rem 1rem;
  margin-bottom: 0.35rem;
}

.fb-label {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.fb-link {
  color: #9fc1e8;
  text-decoration: none;
  font-weight: 700;
}

.fb-link:hover,
.fb-link:focus {
  text-decoration: underline;
}

.fb-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.fb-daumen {
  background: transparent;
  border: 1px solid #555c66;
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  color: #e8e8e8;
}

.fb-daumen[aria-pressed="true"] {
  background: #2f6b3a;
  border-color: #2f6b3a;
}

.fb-daumen[data-wert="negativ"][aria-pressed="true"] {
  background: #7a3a34;
  border-color: #7a3a34;
}

.fb-text {
  flex: 1 1 12rem;
  min-width: 8rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid #555c66;
  border-radius: 6px;
  background: #1c2127;
  color: #f0f0f0;
}

.fb-send {
  background: #f2a98c;
  color: #1c1c1c;
  border: 0;
  border-radius: 6px;
  padding: 0.4rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.fb-status {
  font-size: 0.8rem;
  color: #8fd19a;
}

.fb-status.fb-fehler {
  color: #f0a3a3;
}
