/* Feedback Modal */
.feedback-modal-content {
  max-width: 480px;
  width: 92vw;
  text-align: left;
  background: #1a1a2e;
  color: #eee;
}

.feedback-modal-content h3 {
  color: #3498db;
  text-align: center;
  margin-bottom: 16px;
}

.feedback-type-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 14px;
}

.feedback-type-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
  color: #ddd;
}

.feedback-type-label input[type="radio"] {
  cursor: pointer;
  accent-color: #3498db;
}

#feedback-text {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #444;
  border-radius: 6px;
  font-size: 14px;
  background: #16213e;
  color: #eee;
  resize: vertical;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}

#feedback-text:focus {
  border-color: #3498db;
}

.feedback-char-count {
  text-align: right;
  font-size: 11px;
  color: #666;
  margin-top: 4px;
  margin-bottom: 14px;
}

.feedback-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
}
