/* EHO Heart Self Check — Quiz Styles */
/* Scoped to .eho-hsc-wrap to avoid theme conflicts */

.eho-hsc-wrap *,
.eho-hsc-wrap *::before,
.eho-hsc-wrap *::after {
  box-sizing: border-box;
}

.eho-hsc-wrap {
  font-family: inherit;
  max-width: 620px;
  margin: 0 auto;
  padding: 16px;
}

/* ---- CARD ---- */
.eho-hsc-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 32px 28px;
  position: relative;
}

/* ---- PROGRESS ---- */
.eho-progress-wrap {
  height: 6px;
  background: #f0f0f0;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}
.eho-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #dc3545, #ff6b7a);
  border-radius: 6px;
  transition: width 0.35s ease;
}
.eho-progress-label {
  font-size: 12px;
  color: #888;
  margin-bottom: 20px;
}

/* ---- START SCREEN ---- */
.eho-hsc-logo {
  font-size: 48px;
  text-align: center;
  margin-bottom: 12px;
}
.eho-hsc-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 8px;
}
.eho-hsc-subtitle {
  text-align: center;
  color: #555;
  margin: 0 0 20px;
  line-height: 1.5;
}
.eho-hsc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.eho-hsc-features li {
  padding: 6px 0;
  color: #333;
  font-size: 15px;
}
.eho-hsc-disclaimer-mini {
  text-align: center;
  font-size: 11px;
  color: #aaa;
  margin: 12px 0 0;
}

/* ---- BUTTONS ---- */
.eho-btn {
  display: block;
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  min-height: 48px;
  line-height: 1.3;
}
.eho-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.eho-btn:active { transform: translateY(0); }

.eho-btn-start { background: #dc3545; color: #fff; }
.eho-btn-submit { background: #dc3545; color: #fff; margin-top: 8px; }
.eho-btn-back {
  width: auto;
  padding: 10px 20px;
  background: #f0f0f0;
  color: #555;
  font-size: 14px;
  margin-top: 16px;
}
.eho-btn-bmi-next { background: #dc3545; color: #fff; margin-top: 20px; }
.eho-btn-bmi-next:disabled { background: #ccc; cursor: not-allowed; transform: none; }
.eho-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
}
.eho-btn-pdf {
  background: #333;
  color: #fff;
  margin-top: 10px;
  font-size: 14px;
  padding: 12px 20px;
}
.eho-wa-icon { width: 22px; height: 22px; flex-shrink: 0; }

/* CTA button colors */
.eho-cta-low       { background: #28a745; }
.eho-cta-medium    { background: #fd7e14; }
.eho-cta-high      { background: #dc3545; }
.eho-cta-very_high { background: #8b0000; }
.eho-cta-emergency { background: #dc3545; animation: eho-pulse 1.5s infinite; }

@keyframes eho-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(220,53,69,0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(220,53,69,0); }
}

/* ---- QUESTION STEP ---- */
.eho-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #dc3545;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.eho-question-text {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 20px;
  line-height: 1.4;
}
.eho-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.eho-option {
  width: 100%;
  padding: 14px 18px;
  background: #fafafa;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  min-height: 48px;
  line-height: 1.4;
}
.eho-option:hover {
  border-color: #dc3545;
  background: #fff5f6;
  color: #dc3545;
}
.eho-option.selected {
  border-color: #dc3545;
  background: #dc3545;
  color: #fff;
}

/* ---- BMI CALC ---- */
.eho-bmi-inputs {
  display: flex;
  gap: 16px;
}
.eho-bmi-field {
  flex: 1;
}
.eho-bmi-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
}
.eho-bmi-input-wrap {
  display: flex;
  align-items: center;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  background: #fafafa;
  transition: border-color 0.2s;
}
.eho-bmi-input-wrap:focus-within { border-color: #dc3545; background: #fff; }
.eho-number-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 12px;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  outline: none;
  width: 100%;
}
.eho-unit {
  padding: 0 12px;
  font-size: 14px;
  color: #888;
  font-weight: 600;
  border-left: 1px solid #e8e8e8;
}
.eho-bmi-result {
  margin-top: 16px;
  text-align: center;
}
.eho-bmi-badge {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.eho-bmi-badge.bmi-normal    { background: #d4edda; color: #155724; }
.eho-bmi-badge.bmi-overweight{ background: #fff3cd; color: #856404; }
.eho-bmi-badge.bmi-obese     { background: #f8d7da; color: #721c24; }
.eho-bmi-badge.bmi-underweight{ background: #d1ecf1; color: #0c5460; }
.eho-bmi-note {
  font-size: 11px;
  color: #888;
  margin: 4px 0 0;
}

/* ---- LEAD FORM ---- */
.eho-lead-icon { text-align: center; margin-bottom: 8px; }
.eho-lead-icon .eho-logo-img { max-height: 28px; width: auto; display: inline-block; }
.eho-lead-title { font-size: 20px; font-weight: 700; text-align: center; color: #1a1a1a; margin: 0 0 8px; }
.eho-lead-sub { text-align: center; color: #555; margin: 0 0 24px; line-height: 1.5; }

.eho-lead-features {
  list-style: none;
  padding: 0;
  margin: 10px 0 12px;
  text-align: left;
  display: inline-block;
}
.eho-lead-features li { font-size: 13px; color: #333; padding: 3px 0; }
.eho-lead-sub-small { font-size: 12px; color: #888; margin: 0 0 6px; text-align: center; }

.eho-lead-form { display: flex; flex-direction: column; gap: 14px; }
.eho-form-group { display: flex; flex-direction: column; gap: 6px; }
.eho-form-group label { font-size: 13px; font-weight: 600; color: #444; }
.eho-form-group input[type="text"],
.eho-form-group input[type="tel"] {
  padding: 12px 14px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 15px;
  color: #1a1a1a;
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.eho-form-group input:focus { border-color: #dc3545; background: #fff; }
.req { color: #dc3545; }
.eho-field-error { font-size: 12px; color: #dc3545; min-height: 16px; }
.eho-form-error { font-size: 13px; color: #dc3545; background: #fff5f5; padding: 10px; border-radius: 6px; display: none; }
.eho-form-error.visible { display: block; }

/* WhatsApp PDF notice */
.eho-wa-pdf-notice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: linear-gradient(135deg, #fffdf0, #fff8dc);
  border: 1.5px solid #ffc107;
  border-left: 4px solid #ff8c00;
  border-radius: 8px;
  padding: 11px 14px;
  margin-top: 8px;
  animation: eho-wa-pulse 2.5s ease-in-out infinite;
}
@keyframes eho-wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0); }
  50%       { box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.18); }
}
.eho-wa-notice-icon { font-size: 22px; flex-shrink: 0; line-height: 1.2; }
.eho-wa-pdf-notice strong {
  display: block;
  color: #7a4800;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}
.eho-wa-pdf-notice p {
  margin: 0;
  color: #664d03;
  font-size: 12px;
  line-height: 1.5;
}

.eho-checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 13px;
  color: #555;
}
.eho-checkbox-label input { margin-top: 2px; flex-shrink: 0; }

/* ---- RESULT CARD ---- */
.eho-result-card { border-top: 5px solid #dc3545; }
.eho-result-low     { border-top-color: #28a745; }
.eho-result-medium  { border-top-color: #fd7e14; }
.eho-result-high    { border-top-color: #dc3545; }
.eho-result-very_high { border-top-color: #8b0000; }

.eho-result-header { margin-bottom: 20px; }
.eho-result-headline {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

.eho-badges-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.eho-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}
.eho-badge-emoji { font-size: 16px; }
.eho-badge-low       { background: #d4edda; color: #155724; }
.eho-badge-medium    { background: #fff3cd; color: #856404; }
.eho-badge-high      { background: #f8d7da; color: #721c24; }
.eho-badge-veryhigh  { background: #f5c6cb; color: #491217; }
.eho-badge-routine   { background: #d1ecf1; color: #0c5460; }
.eho-badge-soon      { background: #fff3cd; color: #856404; }
.eho-badge-urgent    { background: #fde5d0; color: #7d3913; }
.eho-badge-emergency { background: #f8d7da; color: #721c24; }

.eho-score-display {
  text-align: center;
  margin: 20px 0;
}
.eho-score-num {
  font-size: 56px;
  font-weight: 800;
  color: #dc3545;
  line-height: 1;
}
.eho-score-denom {
  font-size: 22px;
  color: #aaa;
  font-weight: 400;
}
.eho-score-label {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

.eho-bmi-summary {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
}

.eho-result-summary {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
}
.eho-result-summary p { margin: 0; line-height: 1.6; color: #444; }

.eho-flags-section { margin-bottom: 20px; }
.eho-flags-title { font-size: 16px; font-weight: 700; color: #1a1a1a; margin: 0 0 12px; }
.eho-flag-card {
  border-left: 4px solid #dc3545;
  background: #fff8f8;
  border-radius: 0 8px 8px 0;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.eho-flag-title { font-weight: 700; font-size: 14px; color: #1a1a1a; margin-bottom: 6px; }
.eho-flag-body { font-size: 13px; color: #555; line-height: 1.5; margin-bottom: 6px; }
.eho-flag-tests { font-size: 12px; color: #888; }
.eho-flag-tests strong { color: #555; }

.eho-cta-section { margin-bottom: 12px; }
.eho-cta-label { font-size: 13px; font-weight: 600; color: #555; margin: 0 0 8px; }
.eho-pdf-section { margin-bottom: 16px; }

.eho-disclaimer {
  background: #fff8e1;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}

/* ---- NAV ---- */
.eho-nav-buttons { margin-top: 12px; }

.eho-lead-back { margin-top: 12px; }
.eho-btn-back-lead {
  width: auto;
  padding: 10px 20px;
  background: transparent;
  color: #aaa;
  font-size: 13px;
  border: 1px solid #ddd;
  display: inline-block;
  width: 100%;
}

/* ---- TRANSITIONS ---- */
.eho-question-step {
  animation: eho-fadein 0.3s ease;
}
@keyframes eho-fadein {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ---- MOBILE ---- */
@media (max-width: 480px) {
  .eho-hsc-card { padding: 20px 16px; }
  .eho-question-text { font-size: 16px; }
  .eho-bmi-inputs { flex-direction: column; }
  .eho-score-num { font-size: 44px; }
  .eho-result-headline { font-size: 17px; }
  .eho-badges-row { flex-direction: column; }
}

/* ============================================================
   PRIMARY BUTTON (alias used in new HTML)
   ============================================================ */
.eho-btn-primary { background: #dc3545; color: #fff; }
/* Disabled = muted red, NOT grey — so the button always reads as the primary action */
.eho-btn-primary:disabled { background: #f0aaaf; color: #fff; cursor: not-allowed; transform: none; opacity: 1; }

/* ---- START SCREEN extras ---- */
.eho-start-icon { text-align: center; margin-bottom: 10px; }
.eho-start-icon .eho-logo-img { max-height: 36px; width: auto; display: inline-block; }
.eho-disclaimer-mini { text-align: center; font-size: 11px; color: #aaa; margin: 10px 0 0; }

/* ---- LEAD FORM head ---- */
.eho-lead-head { margin-bottom: 20px; text-align: center; }
.eho-lead-step { font-size: 12px; font-weight: 700; text-transform: uppercase;
  color: #dc3545; letter-spacing: 0.5px; margin-bottom: 6px; }

/* ============================================================
   SECTION SCREEN LAYOUT
   ============================================================ */
.eho-section-screen {
  animation: eho-fadein 0.28s ease;
}

/* Section header */
.eho-section-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.eho-section-icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.eho-section-step {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #dc3545;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.eho-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 2px;
  line-height: 1.3;
}
.eho-section-desc {
  font-size: 13px;
  color: #777;
  margin: 0;
}

/* Individual question block */
.eho-section-questions { display: flex; flex-direction: column; gap: 0; }

.eho-section-q {
  padding: 26px 0 26px;
  border-bottom: 2px solid #f4f4f4;
}
.eho-section-q:first-child { padding-top: 4px; }
/* Last question — extra bottom space before nav buttons */
.eho-section-q:last-child  { border-bottom: none; padding-bottom: 32px; }

.eho-section-q-label {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.55;
}

/* ---- Missing question highlight ---- */
.eho-section-q.eho-missing .eho-section-q-label {
  color: #dc3545;
}
.eho-section-q.eho-missing .eho-section-q-label::after {
  content: ' ← Harap pilih salah satu';
  font-size: 12px;
  font-weight: 400;
  color: #dc3545;
  display: inline;
}
.eho-section-q.eho-missing .eho-options {
  animation: eho-shake 0.45s ease;
}
.eho-section-q.eho-missing .eho-bmi-inputs {
  animation: eho-shake 0.45s ease;
}
@keyframes eho-shake {
  0%,100% { transform: translateX(0); }
  20%     { transform: translateX(-6px); }
  40%     { transform: translateX(6px); }
  60%     { transform: translateX(-4px); }
  80%     { transform: translateX(4px); }
}

/* Section nav row — sits below a top rule for clear visual break */
.eho-section-nav {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 2px solid #f4f4f4;
}
/* Back — outline style, clearly secondary */
.eho-btn-back-section {
  flex: 0 0 auto;
  width: auto;
  padding: 12px 20px;
  background: transparent;
  color: #999;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid #e0e0e0;
}
.eho-btn-back-section:hover {
  background: #f5f5f5;
  color: #555;
  border-color: #bbb;
  transform: none;
  opacity: 1;
}
/* Next — inherits eho-btn-primary (red), full width */
.eho-btn-next-section {
  flex: 1;
}

/* ============================================================
   INDIVIDUAL QUESTION STEP (new single-question flow)
   ============================================================ */
.eho-q-step {
  animation: eho-fadein 0.28s ease;
}

.eho-q-label {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 22px;
  line-height: 1.4;
}

/* Navigation row at bottom of each step */
.eho-q-nav {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 2px solid #f4f4f4;
}

/* Back button — subtle outline */
.eho-btn-back-q {
  flex: 0 0 auto;
  width: auto;
  padding: 12px 20px;
  background: transparent;
  color: #999;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid #e0e0e0;
}
.eho-btn-back-q:hover {
  background: #f5f5f5;
  color: #555;
  border-color: #bbb;
  transform: none;
  opacity: 1;
}

/* Next button (BMI only) — takes remaining width */
.eho-btn-next-q { flex: 1; }

/* Lead form back button */
.eho-btn-lead-back {
  margin-top: 10px;
  background: transparent;
  color: #bbb;
  font-size: 13px;
  border: 1px solid #e8e8e8;
  padding: 10px 20px;
}
.eho-btn-lead-back:hover { background: #f5f5f5; color: #888; transform: none; opacity: 1; }

@media (max-width: 480px) {
  .eho-q-label  { font-size: 16px; }
  .eho-q-nav    { flex-direction: column; }
  .eho-btn-back-q { width: 100%; }
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */
.eho-card-loading {
  text-align: center;
  padding: 40px 28px;
}

/* Spinner */
.eho-spinner {
  width: 56px;
  height: 56px;
  border: 5px solid #f0f0f0;
  border-top-color: #dc3545;
  border-radius: 50%;
  animation: eho-spin 0.8s linear infinite;
  margin: 0 auto 24px;
}
@keyframes eho-spin {
  to { transform: rotate(360deg); }
}

.eho-loading-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px;
}
.eho-loading-sub {
  font-size: 13px;
  color: #777;
  margin: 0 0 24px;
  line-height: 1.5;
}

.eho-loading-steps {
  text-align: left;
  max-width: 320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.eho-loading-step {
  font-size: 13px;
  color: #aaa;
  padding: 8px 12px;
  border-radius: 8px;
  background: #f8f8f8;
  transition: all 0.3s ease;
}
.eho-loading-step.active {
  color: #dc3545;
  background: #fff5f6;
  font-weight: 600;
  border-left: 3px solid #dc3545;
}
.eho-loading-step.done {
  color: #28a745;
  background: #f0fff4;
  font-weight: 600;
}

/* ============================================================
   GAUGE / SPEEDOMETER
   ============================================================ */
.eho-gauges-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 0 0 20px;
}
.eho-gauge-container {
  flex: 1;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.eho-gauge-inner {
  width: 100%;
}
.eho-gauge-svg {
  width: 100%;
  height: auto;
  display: block;
}
.eho-gauge-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #888;
  text-align: center;
}
.eho-gauge-value {
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
}

/* Score row */
.eho-score-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* ============================================================
   AI ANALYSIS BLOCK
   ============================================================ */
.eho-ai-analysis {
  background: linear-gradient(135deg, #fff8f0 0%, #fff0f5 100%);
  border: 1px solid #ffd6d9;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.eho-ai-title {
  font-size: 15px;
  font-weight: 700;
  color: #dc3545;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eho-ai-title::before { content: '🤖'; font-size: 16px; }
.eho-ai-body {
  font-size: 14px;
  color: #444;
  line-height: 1.75;
}

/* ============================================================
   ADDITIONAL INFO SCREEN
   ============================================================ */
.eho-card-addinfo { text-align: center; }

.eho-addinfo-icon  { font-size: 44px; margin-bottom: 10px; }
.eho-addinfo-title { font-size: 20px; font-weight: 700; color: #1a1a1a; margin: 0 0 8px; }
.eho-addinfo-sub   { color: #666; font-size: 14px; line-height: 1.6; margin: 0 0 18px; }

.eho-addinfo-textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 14px;
  color: #1a1a1a;
  background: #fafafa;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  line-height: 1.6;
  display: block;
  box-sizing: border-box;
}
.eho-addinfo-textarea:focus { border-color: #dc3545; background: #fff; }
.eho-addinfo-textarea::placeholder { color: #bbb; }

.eho-addinfo-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6px 0 18px;
  font-size: 12px;
}
.eho-addinfo-counter { color: #aaa; }
.eho-addinfo-hint    { color: #aaa; font-style: italic; }

.eho-btn-addinfo-back {
  margin-top: 10px;
  background: transparent;
  color: #bbb;
  font-size: 13px;
  border: 1px solid #e8e8e8;
  padding: 10px 20px;
}
.eho-btn-addinfo-back:hover { background: #f5f5f5; color: #888; transform: none; opacity: 1; }

/* ============================================================
   REPORT UPLOAD WIDGET
   ============================================================ */
.eho-report-upload-section {
  margin: 20px 0 10px;
  padding: 16px;
  background: #f8faff;
  border: 1px dashed #b8c9e8;
  border-radius: 10px;
}
.eho-report-upload-title {
  font-size: 14px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 6px;
}
.eho-report-optional {
  font-weight: 400;
  font-size: 12px;
  color: #888;
  margin-left: 4px;
}
.eho-report-upload-desc {
  font-size: 12px;
  color: #666;
  margin: 0 0 12px;
  line-height: 1.5;
}
.eho-report-upload-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #d0d8ef;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13px;
  color: #555;
  transition: border-color 0.2s, background 0.2s;
}
.eho-report-upload-label:hover {
  border-color: #4a90d9;
  background: #f0f6ff;
  color: #2c2c2c;
}
.eho-report-upload-icon { font-size: 20px; flex-shrink: 0; }
.eho-report-upload-error {
  margin-top: 6px;
  font-size: 12px;
  color: #dc3545;
  min-height: 16px;
}

/* ============================================================
   MOBILE — additional
   ============================================================ */
@media (max-width: 480px) {
  .eho-gauges-row     { flex-direction: column; align-items: center; gap: 20px; }
  .eho-gauge-container { max-width: 220px; width: 100%; }
  .eho-section-nav    { flex-direction: column; }
  .eho-btn-back-section { width: 100%; }
  .eho-score-row      { flex-direction: column; gap: 8px; }
  .eho-addinfo-footer { flex-direction: column; align-items: flex-start; gap: 4px; }
}
