/* Shared Eyevertise form field styling (text, email, tel, textarea, select). */
.ev-support-input,
.ev-report-input,
.ev-contact-input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  font-family: var(--font, "Inter", system-ui, sans-serif);
  font-size: 15px;
  line-height: 1.4;
  color: var(--text, #334155);
  background: #ededed;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ev-support-input:focus,
.ev-report-input:focus,
.ev-contact-input:focus {
  outline: none;
  border-color: #1a5fa8;
  box-shadow: 0 0 0 3px rgba(26, 95, 168, 0.15);
}

.ev-support-select,
.ev-report-select {
  appearance: auto;
}

.ev-report-select {
  cursor: pointer;
}

.ev-support-textarea {
  min-height: 120px;
  resize: vertical;
}

.ev-contact-textarea {
  min-height: 96px;
  resize: vertical;
}

.ev-sms-chat-input {
  min-height: 88px;
}
