/* Feedback Modal + Header Button */

#feedbackBtn {
  height: 30px;
  padding: 6px 12px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(209,139,60,0.10);
  border: 1px solid rgba(209,139,60,0.30);
  color: #d18b3c;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}

#feedbackBtn:hover {
  background: rgba(209,139,60,0.18);
  border-color: rgba(209,139,60,0.50);
}

#feedbackBtn svg {
  flex-shrink: 0;
}

/* Modal layout */
.feedback-modal .modal.panel {
  max-width: 540px;
  width: calc(100vw - 32px);
}

.feedback-field {
  display: grid;
  gap: 6px;
  margin: 10px 0;
}

.feedback-field span {
  font-size: 13px;
  color: var(--text-secondary);
}

.feedback-field select {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--text-primary);
  font-size: 14px;
  height: 36px;
  cursor: pointer;
  appearance: auto;
}

.feedback-field select:focus {
  border-color: #6aa9ff;
  box-shadow: 0 0 0 2px rgba(106, 169, 255, 0.25);
  outline: none;
}

.feedback-field textarea {
  min-height: 120px;
  font-family: var(--font-ui);
}

.feedback-context {
  display: flex;
  gap: 16px;
  margin: 10px 0;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-secondary);
}

.feedback-context-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feedback-context-item .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
}

.feedback-success {
  padding: 14px 16px;
  border-radius: 6px;
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.25);
  color: #6ddb9e;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.feedback-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 14px;
}
