/* CSAT/csat.css — gekapselte Styles nur für das Feedback‑Modul */

:root{
  --csat-star-on:  #ffc107;   /* Amber (angeklickt/hover) */
  --csat-star-off: #c8c8c8;   /* Grau (inaktiv) */
}

/* Launcher (Emoji) oben links neben Menü */
.csat-launcher .csat-emoji-btn{
  line-height: 1;
  height: 36px;
  min-width: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding: 8px 10px;
}

/* Modal-Karte für CSAT */
.csat-modal .textarea{ min-height: 90px; }  /* ~50% der bisherigen Höhe */
.csat-disclaimer{ display:block; white-space:normal; }
.csat-drag-handle{ cursor: move; }

/* Sterne-Rating: ohne Rahmen, gelbe Sterne bei Hover/Checked */
.csat-stars{
  display: inline-flex;
  flex-direction: row-reverse; /* wichtig für :checked ~ label */
  gap: 6px;
  border: 0;
  padding: 0;
  margin: 0;
}
.csat-stars input{ display:none; }
.csat-stars label{
  font-size: 24px;
  color: var(--csat-star-off);
  cursor: pointer;
  user-select: none;
  transition: transform .06s ease, color .15s ease;
}
.csat-stars label:hover{ transform: translateY(-1px); }
.csat-stars input:checked ~ label,
.csat-stars label:hover,
.csat-stars label:hover ~ label{
  color: var(--csat-star-on);
}

/* Hilfs-Utilities */
.hidden{ display:none !important; }
.error{ color:#b91c1c; font-size:14px; }
.success{ color:#166534; font-size:14px; }
