
    
    :root {
      --primary: #274B7A;
      --primary-light: #4A7AB3;
      --primary-dark: #1A3454;
      --secondary: #E3F0FF;
      --accent: #F5F2EA;
      --accent-bg: #F9F5EE;
      --text-color: #243447;
      --text-muted: #6B7280;
      --highlight: #BBD3F5;
      --success: #10B981;
      --warning: #F59E0B;
      --error: #EF4444;
      --neon-blue: #BFD8FF;
      --neon-purple: #D7C9FF;
      --gold: #F3D08A;
      --card-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
      --shadow-hover: 0 24px 60px rgba(15, 23, 42, 0.10);
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      padding: 0;
      font-family: "Noto Sans TC", "Segoe UI", sans-serif;
      background: linear-gradient(135deg, var(--accent-bg), #F3F6FB);
      color: var(--text-color);
    }
    .wrapper {
      max-width: 960px;
      margin: 32px auto;
      padding: 24px;
    }
    .card {
      background: #FFFFFF;
      border-radius: 28px;
      padding: 36px;
      box-shadow: var(--card-shadow);
      border: 1px solid rgba(36, 52, 86, 0.08);
    }
    h1 {
      text-align: center;
      color: var(--primary);
      font-size: 32px;
      margin-bottom: 16px;
      font-weight: 900;
    }
    .subtitle {
      text-align: center;
      color: var(--text-muted);
      font-size: 18px;
      margin-bottom: 20px;
    }
    label {
      font-size: 18px;
      font-weight: bold;
      display: block;
      margin-bottom: 8px;
      color: var(--primary);
    }
    textarea {
      width: 100%;
      min-height: 240px;
      padding: 18px;
      font-size: 18px;
      border: 1.5px solid rgba(148, 163, 184, 0.8);
      border-radius: 18px;
      margin-bottom: 24px;
      resize: vertical;
      background: #FDFBF5;
      transition: all 0.25s ease;
    }
    textarea:focus {
      border-color: var(--primary-light);
      background: #FFFFFF;
      box-shadow: 0 0 0 3px rgba(74, 122, 179, 0.22);
      outline: none;
    }
    .buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
    }
    button {
      padding: 14px 20px;
      border: none;
      border-radius: 28px;
      background: linear-gradient(to right, var(--primary), var(--primary-dark));
      color: white;
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: var(--card-shadow);
    }
    button:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover);
      background: linear-gradient(to right, var(--primary-light), var(--primary));
    }
    .progress-container {
      margin: 28px 0;
    }
    .progress-bar {
      height: 10px;
      background: #ffffff;
      border-radius: 5px;
      overflow: hidden;
    }
    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--primary), var(--neon-blue));
      width: 0%;
      transition: width 0.3s ease;
    }
    .encouragement {
      font-size: 18px;
      font-weight: bold;
      color: var(--text-muted);
      margin-top: 12px;
      text-align: center;
    }

    .trust-note {
      margin-top: 8px;
      margin-bottom: 4px;
      font-size: 13px;
      line-height: 1.7;
      color: var(--text-muted);
      text-align: center;
    }

    .loading {
      text-align: center;
      font-size: 20px;
      color: var(--primary);
      padding: 40px 20px;
    }
    .loading-title {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 12px;
    }
    .loading-subtitle {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 16px;
      line-height: 1.7;
    }
    .loading-steps {
      list-style: none;
      padding: 0;
      margin: 0 0 16px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      text-align: left;
      display: inline-block;
    }
    .loading-steps li + li {
      margin-top: 4px;
    }
    .loading-countdown {
      font-size: 16px;
      font-weight: 700;
      color: var(--primary-dark);
      margin-top: 6px;
    }

    
    .opinion-section {
      margin-bottom: 24px;
      background: #ffffff;
      padding: 24px;
      border-radius: 16px;
      border-left: 4px solid var(--primary);
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      font-size: 110%;
    }

    .opinion-section h3 {
      color: var(--primary);
      margin-top: 0;
      border-bottom: 1px solid var(--secondary);
      padding-bottom: 8px;
      font-weight: 700;
    }
    .material-icons {
      color: var(--primary);
    }
    
    /* Floating tech elements */
    .tech-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      opacity: 0.08;
      background: 
          radial-gradient(circle at 20% 30%, var(--neon-blue), transparent 45%),
          radial-gradient(circle at 80% 70%, var(--neon-purple), transparent 50%);
      animation: float 24s infinite alternate ease-in-out;
    }

    @keyframes float {
        0% { transform: translate(0, 0); }
        50% { transform: translate(-5%, 5%); }
        100% { transform: translate(5%, -5%); }
    }
    
    /* Back button styling */
    .back-container {
      position: fixed;
      top: 20px;
      left: 0;
      width: 100%;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      z-index: 999;
      align-items: center;
    }

@media (max-width: 600px) {
  .back-container {
    top: 16px;
    padding: 0 10px;
  }
}

    .back-btn {
      display: flex;
      align-items: center;
      gap: 4px;
      cursor: pointer;
      color: var(--primary);
      font-weight: bold;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .back-btn:hover {
      color: var(--primary-dark);
    }
    .help-btn {
      display: flex;
      align-items: center;
      gap: 4px;
      cursor: pointer;
      color: var(--primary);
      font-weight: bold;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .help-btn:hover {
      color: var(--primary-dark);
    }
  
/* === Mobile opinion display tuning === */
.opinion-section, .opinion-section div {
  word-break: break-word;
  overflow-wrap: anywhere;
}
/* Constrain long lines a bit on larger screens for readability */
@media (min-width: 601px) {
  .opinion-section div {
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Phone-first adjustments */
@media (max-width: 600px) {
  .wrapper {
    margin: 6px auto;
    padding: 10px;
  }
  .card {
    padding: 18px;
    border-radius: 14px;
  }
  h1 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }
  /* Textareas (initial question & steps) */
  textarea, #step-container textarea {
    width: 100%;
    max-width: 100%;
    min-height: 160px;
    font-size: 16px;
    padding: 14px;
    border-radius: 12px;
  }
  /* Opinion sections */
  .opinion-section {
    padding: 16px;
    border-radius: 12px;
    font-size: 100%;
    margin-bottom: 16px;
  }
  .opinion-section h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .opinion-section div {
    max-width: 100%;
    margin: 0;
    line-height: 1.7;
  }
  .buttons {
    gap: 10px;
  }
  .progress-container {
    margin: 16px 0;
  }
}
/* === End mobile tuning === */

/* === CTA breathing animation (only for the main "發送給律師諮詢" button) === */
.cta-breath {
  position: relative;
  isolation: isolate;
  animation: cta-breathe 2.6s ease-in-out infinite;
  box-shadow: 0 6px 16px rgba(0, 119, 163, 0.22);
}
.cta-breath::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  z-index: -1;
  filter: blur(10px);
  pointer-events: none;
  animation: cta-glow 2.6s ease-in-out infinite;
  background: radial-gradient(60% 60% at 50% 50%, rgba(0,180,216,.35), rgba(0,119,163,.0) 70%);
}
@keyframes cta-breathe {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}
@keyframes cta-glow {
  0%   { opacity: .45; }
  50%  { opacity: .85; }
  100% { opacity: .45; }
}
@media (prefers-reduced-motion: reduce) {
  .cta-breath, .cta-breath::after {
    animation: none;
  }
}


/* === Scenario option UI === */
.opt-grid{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin: 4px 0 0;
}
.opt-btn{
  width:100%;
  text-align:left;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(0,75,107,.18);
  background:#fff;
  color:var(--text-color);
  font-weight:700;
  cursor:pointer;
  box-shadow:0 2px 10px rgba(0,0,0,.04);
  transition: all .25s ease;
}
.opt-btn:hover{
  transform: translateY(-1px);
  box-shadow:0 8px 20px rgba(0,75,107,.14);
}
.opt-btn.selected{
  border-color: rgba(0,119,163,.75);
  box-shadow:0 10px 26px rgba(0,119,163,.20);
  background: linear-gradient(90deg, rgba(0,119,163,.12), rgba(0,75,107,.06));
}
.opt-custom{
  margin-top: 12px;
}
.hint-mini{
  font-size: 13px;
  color: var(--text-muted);
  margin-top: -16px;
  margin-bottom: 10px;
}


/* === Premium option styles (lawyer-thinking layers) === */
.opt-btn{
  position:relative;
  padding-left: 18px;
}
.opt-btn::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  bottom:10px;
  width:6px;
  border-radius:999px;
  background: rgba(0,75,107,.18);
}
.opt-btn.layer-fact::before{
  background: linear-gradient(180deg, rgba(0,119,163,.9), rgba(0,75,107,.55));
}
.opt-btn.layer-resp::before{
  background: linear-gradient(180deg, rgba(88,80,236,.85), rgba(0,75,107,.45));
}
.opt-btn.layer-dmg::before{
  background: linear-gradient(180deg, rgba(212,175,55,.85), rgba(0,75,107,.35));
}

.opt-inner{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.opt-badges{
  display:flex;
  align-items:center;
  gap:8px;
}
.opt-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.6px;
  border:1px solid rgba(0,75,107,.14);
  background:#fff;
  color:var(--primary);
}
.opt-badge.fact{background:rgba(0,119,163,.08); border-color:rgba(0,119,163,.22); color:rgba(0,75,107,.95);}
.opt-badge.resp{background:rgba(88,80,236,.08); border-color:rgba(88,80,236,.22); color:rgba(0,75,107,.95);}
.opt-badge.dmg{background:rgba(212,175,55,.10); border-color:rgba(212,175,55,.28); color:rgba(0,75,107,.95);}

.opt-picked-tag{
  margin-left:auto;
  display:none;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  background:rgba(16,185,129,.10);
  border:1px solid rgba(16,185,129,.30);
  color:rgba(0,75,107,.95);
}
.opt-btn.selected .opt-picked-tag{ display:inline-flex; }

.opt-text{
  font-size:16px;
  line-height:1.75;
  font-weight:800;
  color:var(--text-color);
}

.stage-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  letter-spacing:.3px;
  border:1px solid rgba(0,75,107,.14);
  background:#fff;
  color:var(--primary);
}
.stage-chip.fact{background:rgba(0,119,163,.06); border-color:rgba(0,119,163,.18);}
.stage-chip.resp{background:rgba(88,80,236,.06); border-color:rgba(88,80,236,.18);}
.stage-chip.dmg{background:rgba(212,175,55,.08); border-color:rgba(212,175,55,.22);}



/* ---- next style block ---- */


/* === Route 1: 淡底 + 深藍字（降低壓迫感、維持專業） === */
.opt-btn{
  background: #ffffff !important;
  border: 1px solid rgba(0,75,107,.18) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,.04) !important;
  color: var(--text-color) !important;
}
.opt-btn:hover{
  box-shadow: 0 8px 20px rgba(0,75,107,.14) !important;
}
.opt-btn.selected{
  background: linear-gradient(90deg, rgba(0,119,163,.08), rgba(0,75,107,.04)) !important;
  border-color: rgba(0,119,163,.45) !important;
  box-shadow: 0 8px 20px rgba(0,75,107,.14) !important;
}
.opt-btn::before{
  background: rgba(0,75,107,.18) !important;
}


/* ---- next style block ---- */


/* === Legal path decision cards (soft, low-pressure) === */
.legal-path-card{
  width: 100% !important;
  text-align: left !important;
  padding: 20px 22px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(0,75,107,.18) !important;
  background: linear-gradient(180deg, #ffffff 0%, rgba(224,242,255,.55) 100%) !important;
  color: var(--text-color) !important;

  /* override global button gradient */
  background-image: none !important;

  box-shadow: 0 6px 16px rgba(0,0,0,0.06) !important;
  cursor: pointer !important;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease !important;

  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  min-height: 132px !important;
}
.legal-path-card:hover{
  transform: translateY(-2px) !important;
  border-color: rgba(0,119,163,.38) !important;
  box-shadow: 0 10px 26px rgba(0,75,107,.16) !important;
  background: linear-gradient(180deg, #ffffff 0%, rgba(224,242,255,.70) 100%) !important;
}
.legal-path-card:active{
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 20px rgba(0,75,107,.14) !important;
}
.legal-path-card:focus-visible{
  outline: 3px solid rgba(0,180,216,.32) !important;
  outline-offset: 2px !important;
}

.legal-path-icon{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,119,163,.10);
  color: var(--primary);
  font-size: 22px !important;
}
.legal-path-title{
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .3px;
  color: var(--primary-dark);
}
.legal-path-desc{
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 700;
  color: rgba(51,65,85,.92);
}

/* Responsive: keep cards readable on small screens */
@media (max-width: 600px){
  .legal-path-card{
    padding: 16px 16px !important;
    border-radius: 18px !important;
    min-height: 120px !important;
  }
  .legal-path-title{ font-size: 18px; }
  .legal-path-desc{ font-size: 15px; }
}


/* ---- next style block ---- */



/* === Non-legal modal (brand-styled) === */
#nonLegalOverlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.45);backdrop-filter:saturate(120%) blur(2px);z-index:10000;}
#nonLegalModal{position:relative;width:min(92%,480px);margin:8% auto;background:#fff;border-radius:18px;box-shadow:0 18px 48px rgba(0,75,107,.28);overflow:hidden;border:1px solid rgba(0,75,107,.12);}
#nonLegalModalHeader{display:flex;align-items:center;gap:10px;padding:16px 18px;background:linear-gradient(90deg,var(--primary),var(--primary-dark));color:#fff;}
#nonLegalModalHeader .brand{display:flex;align-items:center;gap:8px;font-weight:900;letter-spacing:.5px;}
#nonLegalModalHeader .brand .material-icons{color:#fff;}
#nonLegalModalBody{padding:20px 22px 8px;color:var(--text-color);}
#nonLegalModalBody p{margin:0 0 10px;line-height:1.75}
#nonLegalModalBody .tip{font-size:14px;color:var(--text-muted)}
#nonLegalModalActions{display:flex;justify-content:flex-end;gap:10px;padding:14px 18px 20px;}
.nl-btn{padding:12px 16px;border:none;border-radius:12px;font-weight:700;cursor:pointer;box-shadow:var(--card-shadow);}
.nl-btn.secondary{background:#eef6fb;color:var(--primary);}
.nl-btn.primary{background:linear-gradient(90deg,var(--primary),var(--primary-dark));color:#fff;}
#nonLegalClose{position:absolute;top:10px;right:10px;background:transparent;border:none;color:#fff;cursor:pointer;padding:6px;border-radius:8px;}
#nonLegalClose .material-icons{font-size:22px;color:#fff;}
@media (max-width:600px){
  #nonLegalModal{margin:18% auto;}
}



#nonLegalModalBody{padding:24px 28px 12px;color:var(--text-color);font-family:'Noto Sans TC',sans-serif;font-size:17px;line-height:1.85;letter-spacing:0.3px;}
#nonLegalModalBody p{margin:0 0 14px;}
#nonLegalModalBody .tip{font-size:15px;color:var(--text-muted);font-style:italic;}
#nonLegalModalHeader .brand{font-weight:900;letter-spacing:1px;font-size:18px;}


/* ---- next style block ---- */


/* Keep the dialog within viewport and make inner content scrollable */
.ai-modal, .modal, .dialog, [role='dialog'] { overscroll-behavior: contain; }
.ai-modal .content, .modal .content, .dialog .content, [role='dialog'] .content, .modal-card, .ai-dialog-card {
  max-height: 80vh; overflow-y: auto;
}


/* ---- next style block ---- */


/* smaller hint text for parenthetical notes */
.hint-30 { font-size: 70%; }


/* ---- next style block ---- */


@media (max-width: 600px) {
  .back-btn span:last-child,
  .help-btn span:last-child {
    display: none;
  }
  .back-btn .material-icons,
  .help-btn .material-icons {
    font-size: 28px;
  }
}


/* ---- next style block ---- */


/* === Safe top spacing to avoid overlap with fixed header on small screens === */
/* Phones: add 1cm extra top margin beyond the existing 16px */
@media (max-width: 600px) {
  .wrapper { margin: calc(16px + 1cm) auto 16px; }
}

/* Small windows/tablets up to 960px: add 1cm beyond the existing 40px */
@media (min-width: 601px) and (max-width: 960px) {
  .wrapper { margin: calc(40px + 1cm) auto; }
}

/* === 強制覆蓋 h1 字級放大 30% === */
@media (max-width: 600px) {
  h1 {
    font-size: 29px !important; /* 原本 22px → 放大 30% */
  }
}
@media (min-width: 601px) and (max-width: 960px) {
  h1 {
    font-size: 42px !important; /* 原本 32px → 放大 30% */
  }
}



/* ---- next style block ---- */



/* === 強制覆蓋 h1 字級放大 30%（手機與小尺寸視窗） === */
@media (max-width: 600px) {
  h1 { font-size: 29px !important; } /* 原 22px × 1.3 */
}
@media (min-width: 601px) and (max-width: 960px) {
  h1 { font-size: 42px !important; } /* 原 32px × 1.3 */
}



/* ---- next style block ---- */


@media (max-width: 720px){
  #legalPathCards{ grid-template-columns: 1fr; }
}

/* === Soft premium hero highlights === */
.hero-highlights{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:20px;
}
.hero-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 12px;
  border-radius:999px;
  font-size:13px;
  background:rgba(39,75,122,0.04);
  color:var(--text-muted);
  border:1px solid rgba(39,75,122,0.08);
}
.hero-pill .material-icons{
  font-size:18px;
  color:var(--success);
}

/* === Soft inputs (text fields) === */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"]{
  width:100%;
  padding:10px 14px;
  border-radius:14px;
  border:1.5px solid rgba(148,163,184,0.85);
  background:#FDFBF5;
  font-size:15px;
  transition:all .22s ease;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus{
  border-color:var(--primary-light);
  background:#FFFFFF;
  box-shadow:0 0 0 2px rgba(74,122,179,0.18);
  outline:none;
}

/* === CTA primary button === */
button{
  padding:14px 22px;
  border:none;
  border-radius:999px;
  background:linear-gradient(to right, var(--primary), var(--primary-dark));
  color:#FFFFFF;
  font-size:18px;
  font-weight:bold;
  cursor:pointer;
  transition:all .26s ease;
  box-shadow:0 10px 26px rgba(39,75,122,0.22);
}
button:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow-hover);
  background:linear-gradient(to right, var(--primary-light), var(--primary));
}

.primary-cta{
  padding-inline:26px;
}
.primary-cta .material-icons.cta-arrow{
  font-size:20px;
  color:var(--success);
  margin-right:6px;
}

/* === Scenario option UI softening === */
.opt-grid{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin: 14px 0 0;
}
.opt-btn{
  width:100%;
  text-align:left;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(39,75,122,0.14);
  background:#FFFFFF;
  color:var(--text-color);
  font-weight:700;
  cursor:pointer;
  box-shadow:0 4px 14px rgba(15,23,42,0.05);
  transition:all .22s ease;
}
.opt-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(15,23,42,0.10);
}
.opt-btn.selected{
  border-color:rgba(74,122,179,0.8);
  box-shadow:0 14px 30px rgba(74,122,179,0.25);
  background:linear-gradient(90deg, rgba(74,122,179,0.10), rgba(250,250,255,0.90));
}
.opt-custom textarea{
  min-height:140px;
}

/* === RWD cleanup & mobile / tablet refinements (2026-01-05) === */
@media (max-width: 600px) {
  /* Slightly larger base text, and leave more space for fixed header */
  body {
    font-size: 15px;
  }
  .wrapper {
    margin: calc(56px + 20px) auto 20px;
    padding: 14px 12px;
  }
  .card {
    padding: 18px 14px;
    border-radius: 16px;
  }
  h1 {
    font-size: 26px !important;
    line-height: 1.4;
  }
  .hero-highlights {
    margin-top: 6px;
  }
  /* Keep back / help buttons usable on narrow screens */
  .back-container {
    top: 10px;
    padding: 0 12px;
  }
  .back-btn span,
  .help-btn span {
    font-size: 13px;
  }
  /* FAQ block: reduce side padding on small screens */
  #contextFaqBlock {
    margin: 12px 8px 24px;
    padding: 16px 14px;
    border-radius: 14px;
  }
  #contextFaqBlock h2 {
    font-size: 18px;
  }
  #contextFaqBlock h3 {
    font-size: 15px;
  }
  #contextFaqBlock p {
    font-size: 13.5px;
  }
  /* Bottom toast: center on mobile and avoid overflowing */
  #submitStatus {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: 92%;
    box-sizing: border-box;
  }
  /* Modal panels: make them slightly wider and higher on very small screens */
  #lawyerModal > div,
  #aiDisclaimerModal > div,
  #nonLegalModal > div,
  #suggestLawyerPrompt > div {
    width: 92% !important;
    max-width: 420px;
    margin: 12% auto 0 !important;
    padding: 18px 16px !important;
    border-radius: 18px !important;
  }
}

@media (min-width: 601px) and (max-width: 960px) {
  body {
    font-size: 16px;
  }
  .wrapper {
    margin: calc(64px + 24px) auto 32px;
    padding: 20px;
  }
  h1 {
    font-size: 36px !important;
    line-height: 1.4;
  }
}



@media (max-width: 600px) {
  .wrapper {
    margin-top: 26px !important;
  }
}

/* === Suggest Lawyer Prompt buttons: make both same size === */
#suggestLawyerPrompt .suggest-btn {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  box-shadow: none;
}

#suggestLawyerPrompt .suggest-secondary {
  background: #e5e7eb;
  color: #374151;
  margin-right: 8px;
}

#suggestLawyerPrompt .suggest-primary {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: #ffffff;
}
