  body {
    padding: 0;
  }


.triage {
  .form-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }

  /* Cards */
  .card {
    border: 0;
  }


  .intro-title {
    color: #202124;
    margin-bottom: 16px;
  }

  .intro-body {
    color: #202124;
  }

 /* .intro-body ul {
    margin: 8px 0 12px;
  }*/

  .intro-body li { margin: 3px 0; }

  /* Question */
  .question-title {
   /* font-size: 16px;
    font-weight: 500;
    line-height: 1.5;*/
    /*margin-bottom: 6px;*/
  }

  .question-desc {
    /*font-size: 13px;
    color: #5f6368;
    line-height: 1.6;*/
    margin-bottom: 16px;
  }

  /* Radio list */
  .options-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .option-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 6px;
    cursor: pointer;
    transition: background .12s;
  }

  .option-item:hover { background: rgba(192,72,0,.05); }

  .option-item input[type="radio"] {
    accent-color: #c04800;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
  }

  .option-label {
/*    font-size: 14px;
    line-height: 1.5;*/
    cursor: pointer;
    color: #202124;
  }

  .result-body {
    /*font-size: 14px;*/
    /*line-height: 1.75;*/
    color: #202124;
  }

  /*.result-body p { margin: 8px 0; }*/
  /*.result-body ul, .result-body ol { padding-left: 22px; margin: 8px 0; }*/
  /*.result-body li { margin: 4px 0; }*/
  /*.result-body a { color: #c04800; }*/
  /*.result-body b, .result-body strong { font-weight: 600; }*/

  /* Nav row */
  .nav-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    flex-wrap: wrap;
  }

  /* Error */
  .error-msg {
    color: #b3261e;
    margin-top: 10px;
    display: none;
  }
  .error-msg.show { display: block; }

  /* Progress */
  .progress-wrap {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .progress-track {
    flex: 1;
    height: 4px;
    background: #e0e0e0;
    overflow: hidden;
  }

  .progress-fill {
    height: 100%;
    background: #c04800;
    transition: width .3s ease;
  }

  .progress-text {
    color: #5f6368;
    white-space: nowrap;
  }

  .hidden { display: none !important; }
}