/* Anket - 1..5 yüz ikonları */
.rate-group { display: flex; gap: 14px; margin: 8px 0 20px; }
.rate-option { position: relative; width: 36px; height: 36px; cursor: pointer; }
.rate-option input { position: absolute; inset: 0; opacity: 0; }
.rate-emoji {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #f1f1f1; color: #fff; font-size: 18px; transition: transform .15s ease, box-shadow .15s ease;
}
.rate-option input:checked + .rate-emoji, .rate-option input:focus + .rate-emoji {
  transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.emoji-1 { background: #ef4444; } /* kırmızı */
.emoji-2 { background: #f97316; }
.emoji-3 { background: #f59e0b; }
.emoji-4 { background: #a3e635; }
.emoji-5 { background: #22c55e; }

.survey-form .form-label { font-weight: 600; color: var(--title, #3d5998); margin-bottom: 6px; }
.survey-form .form-control { border-radius: 10px; }
.survey-form .form-control.is-invalid { border-color: #ef4444 !important; box-shadow: 0 0 0 0.2rem rgba(239,68,68,.15); }
.error-text { display: none; color: #ef4444; font-size: 12px; margin-top: 6px; }
.show-error { display: block; }
.survey-submit { background: var(--rgba-primary-1); color: var(--primary); border: none; padding: 12px 20px; border-radius: 12px; font-weight: 600; }
.survey-submit:hover { background: var(--rgba-primary-1); opacity: .9; }

/* Dark */
.theme-dark .rate-emoji { background: #1f1f1f; }

/* Toast */
.toast-msg {
  position: fixed; left: 50%; bottom: 90px; transform: translateX(-50%);
  background: rgba(0,0,0,.85); color: #fff; padding: 10px 14px; border-radius: 10px;
  font-size: 14px; z-index: 2000; opacity: 0; transition: opacity .2s ease, bottom .2s ease;
}
.toast-msg.show { opacity: 1; bottom: 100px; }

/* Rate group invalid state */
.rate-group.invalid { outline: 2px solid #ef4444; outline-offset: 3px; border-radius: 12px; padding: 6px; }

