
      /* ===============================
         LAYOUT
      =============================== */
      .counties-layout {
        display: grid;
        grid-template-columns: 150px 1fr 500px;
        gap: 1rem;
        height: 650px;
      }

      .county-details {
        overflow-y: auto;
        border: 1px solid #ccc;
        padding: 1rem;
        background: #fff;
      }

      .county-map {
        border: 1px solid #ccc;
        background: #fafafa;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 600px;
      }

      .county-map svg {
        width: 100% !important;
        height: 100% !important;
        max-width: 100%;
        max-height: 100%;
      }

      .county-map svg :focus {
        outline: none !important;
      }

      /* ===============================
         COMPONENTS
      =============================== */
      .counties-list {
        overflow-y: auto;
        border: 1px solid #ccc;
        padding: 0.5rem;
        background: #fff;
      }

      .counties-list button {
        display: block;
        width: 100%;
        text-align: left;
        background: none;
        border: 0;
        padding: 4px;
        cursor: pointer;
        font: inherit;
      }

      .counties-list button.is-selected {
        background: #cfe2ff;
      }

      .counties-list button:focus {
        outline: none;
      }

      .counties-list button:focus-visible:not(.is-selected) {
        outline: 2px solid #1a73e8;
        outline-offset: -2px;
      }

      .notice {
        font-size: 18px !important;
        color: #444;
        margin-bottom: 0.75rem;
        padding: 6px 10px;
        background: #f5f7fa;
        border-left: 3px solid #1a73e8;
      }

      .agency-note {
        margin-top: 6px;
        color: #555;
        line-height: 1.35;
      }

      .intro-card {
        background: #f8fafc;
        border: 1px solid #d0d7de;
        border-radius: 6px;
        padding: 16px 18px;
      }

      .intro-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 8px;
      }

      .intro-card p {
        margin-top: 0;
        margin-bottom: 12px;
        color: #444;
      }

      .intro-sub {
        font-weight: 600;
        margin-bottom: 12px;
      }

      .intro-list {
        margin: 0;
        padding-left: 18px;
      }

      .intro-list li {
        margin-bottom: 10px;
      }

      .intro-list span {
        display: block;
        color: #555;
        margin-top: 2px;
      }

      .detail-block {
        margin: 0 0 1rem 0;
      }

      .section-divider {
        border-top: 1px solid #e0e0e0;
        margin: 16px 0;
      }

      .section-desc {
        color: #6b7280;
        font-size: 0.95em;
        margin-bottom: 12px;
        line-height: 1.4;
      }

      .agency-block {
        margin-bottom: 14px;
      }

      .subtext {
        margin-left: 16px;
        margin-top: 2px;
        color: #555;
        line-height: 1.35;
      }

      .same-agency-help {
        margin-top: 8px;
      }

      /* ===============================
         TYPOGRAPHY
      =============================== */
      .county-details h2 {
        margin-top: 0;
        margin-bottom: 0.5rem;
        font-size: 1.4rem !important;
        font-weight: 600;
      }

      .county-details h3 {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        font-size: 1.2rem !important;
        font-weight: 600;
      }

      .counties-wrap,
      .counties-wrap button,
      .counties-wrap input,
      .counties-wrap select,
      .counties-wrap textarea {
        font-family: inherit !important;
      }

      /* ===============================
         UTILITIES
      =============================== */
      .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }

      /* ===============================
         Mobile (phone) layout:
        - Hide the map to save space on small screens
        - Stack county list above details instead of side-by-side
      =============================== */
      @media (max-width: 760px) {
        .county-map {
          display: none;
        }

        .counties-layout {
          grid-template-columns: 1fr;
          height: auto;
        }

        .counties-list {
          max-height: 250px;
          overflow-y: auto;
        }

        .county-details {
          min-height: 400px;
        }
      }
  