:root {
      color-scheme: light;
      --ink: #172123;
      --muted: #5a6668;
      --line: #d8e0de;
      --paper: #f7faf8;
      --surface: #ffffff;
      --surface-2: #eef4f1;
      --teal: #126c62;
      --teal-dark: #0c4f48;
      --blue: #405f91;
      --amber: #c57d20;
      --wood-1: #b76435;
      --wood-2: #d69a58;
      --wood-3: #8f4c2f;
      --string: rgba(245, 247, 242, 0.92);
      --shadow: 0 18px 50px rgba(23, 33, 35, 0.12);
      --radius: 8px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    [hidden] {
      display: none !important;
    }

    body {
      margin: 0;
      background:
        linear-gradient(180deg, rgba(238, 244, 241, 0.96), rgba(247, 250, 248, 0.98) 40%),
        radial-gradient(circle at 18% 0%, rgba(18, 108, 98, 0.10), transparent 28%),
        var(--paper);
      color: var(--ink);
      line-height: 1.5;
    }

    button,
    select,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    button:focus-visible,
    select:focus-visible,
    input:focus-visible,
    summary:focus-visible {
      outline: 3px solid color-mix(in srgb, var(--teal) 62%, white);
      outline-offset: 3px;
    }

    .page {
      min-height: 100vh;
    }

    .topbar {
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.78);
      backdrop-filter: blur(18px);
      position: sticky;
      top: 0;
      z-index: 20;
    }

    .topbar-inner,
    .section-inner {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .topbar-inner {
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      font-weight: 800;
      letter-spacing: 0;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--teal), var(--blue));
      position: relative;
      box-shadow: inset 0 -8px 12px rgba(0, 0, 0, 0.16);
      flex: 0 0 auto;
    }

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      left: 8px;
      right: 8px;
      height: 2px;
      background: rgba(255, 255, 255, 0.86);
      border-radius: 999px;
    }

    .brand-mark::before {
      top: 12px;
    }

    .brand-mark::after {
      top: 20px;
    }

    .nav-pill {
      border: 1px solid var(--line);
      background: var(--surface);
      color: var(--muted);
      border-radius: 999px;
      padding: 8px 12px;
      font-size: 0.88rem;
      white-space: nowrap;
    }

    .hero {
      padding: 18px 0 16px;
    }

    .eyebrow {
      margin: 0 0 8px;
      color: var(--teal-dark);
      font-weight: 800;
      font-size: 0.82rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    h1 {
      margin: 0;
      max-width: 820px;
      font-size: clamp(1.9rem, 4.4vw, 3.35rem);
      line-height: 1.02;
      letter-spacing: 0;
    }

    .lede {
      margin: 8px 0 0;
      max-width: 720px;
      color: var(--muted);
      font-size: clamp(1rem, 2.2vw, 1.16rem);
    }

    .tool-shell {
      padding: 0 0 44px;
    }

    .mobile-tool-tabs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4px;
      margin-bottom: 12px;
      padding: 4px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--surface-2);
    }

    .mobile-tool-tabs button {
      min-height: 44px;
      border: 0;
      border-radius: 6px;
      background: transparent;
      color: var(--muted);
      font-weight: 820;
      cursor: pointer;
    }

    .mobile-tool-tabs button[aria-selected="true"] {
      background: var(--surface);
      color: var(--teal-dark);
      box-shadow: 0 1px 8px rgba(23, 33, 35, 0.10);
    }

    .tool-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      align-items: start;
    }

    .control-panel,
    .visual-panel {
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .control-panel {
      order: 2;
      padding: 18px;
      display: grid;
      gap: 16px;
      align-content: start;
    }

    .visual-panel {
      order: 1;
      padding: 18px;
      display: grid;
      gap: 14px;
      align-content: start;
      min-width: 0;
    }

    .panel-title {
      margin: 0;
      font-size: 1rem;
      font-weight: 850;
    }

    .control-group {
      display: grid;
      gap: 8px;
    }

    .control-label {
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .segmented {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 1fr;
      gap: 4px;
      padding: 4px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--surface-2);
    }

    .segmented button {
      min-height: 44px;
      min-width: 0;
      border: 0;
      border-radius: 6px;
      background: transparent;
      color: var(--muted);
      font-weight: 780;
      white-space: nowrap;
      overflow-wrap: anywhere;
    }

    .segmented button[aria-pressed="true"] {
      background: var(--surface);
      color: var(--teal-dark);
      box-shadow: 0 1px 8px rgba(23, 33, 35, 0.10);
    }

    .select-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .field {
      display: grid;
      gap: 6px;
    }

    .field label {
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 760;
    }

    select,
    input[type="text"] {
      min-height: 44px;
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 0 38px 0 12px;
      color: var(--ink);
      background: var(--surface);
    }

    .result-card {
      border: 1px solid color-mix(in srgb, var(--teal) 25%, var(--line));
      border-radius: var(--radius);
      background: linear-gradient(180deg, #f6fbf9, #ffffff);
      overflow: hidden;
    }

    .result-main {
      padding: 15px;
      display: grid;
      gap: 6px;
    }

    .result-kicker {
      margin: 0;
      color: var(--teal-dark);
      font-size: 0.78rem;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .result-value {
      margin: 0;
      font-size: clamp(1.65rem, 3vw, 2.35rem);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: 0;
      overflow-wrap: anywhere;
    }

    .result-meta {
      color: var(--muted);
      font-size: 0.94rem;
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      border-top: 1px solid var(--line);
    }

    .metric {
      padding: 12px;
      min-width: 0;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.72);
    }

    .metric:nth-child(even) {
      border-right: 0;
    }

    .metric:nth-last-child(-n + 2) {
      border-bottom: 0;
    }

    .metric span {
      display: block;
      color: var(--muted);
      font-size: 0.72rem;
      font-weight: 820;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .metric strong {
      display: block;
      margin-top: 3px;
      font-size: 1.05rem;
      overflow-wrap: anywhere;
    }

    .examples {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .example-btn {
      min-height: 44px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--surface);
      color: var(--ink);
      font-weight: 780;
    }

    .example-btn:hover,
    .example-btn:focus-visible {
      border-color: color-mix(in srgb, var(--teal) 55%, var(--line));
    }

    .visual-header {
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: 16px;
    }

    .visual-copy {
      margin: 4px 0 0;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .live-chip {
      flex: 0 0 auto;
      border: 1px solid color-mix(in srgb, var(--amber) 42%, var(--line));
      background: #fff9ee;
      color: #6d4310;
      border-radius: 999px;
      padding: 8px 12px;
      font-weight: 850;
      white-space: nowrap;
    }

    .quick-select {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 10px;
      padding: 10px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(238, 244, 241, 0.78);
    }

    .quick-field {
      min-width: 0;
    }

    .quick-field label {
      font-size: 0.72rem;
      font-weight: 820;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .neck-scroller {
      --fretboard-height: 265px;
      width: 100%;
      overflow-x: auto;
      overscroll-behavior-x: contain;
      position: relative;
      padding: 4px;
      scrollbar-color: var(--teal) var(--surface-2);
    }

    .neck-scroller::before,
    .neck-scroller::after {
      content: "";
      position: absolute;
      top: 4px;
      width: 34px;
      height: var(--fretboard-height, 265px);
      pointer-events: none;
      z-index: 18;
      opacity: 0;
      transition: opacity 160ms ease;
    }

    .neck-scroller::before {
      left: 4px;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), transparent);
    }

    .neck-scroller::after {
      right: 4px;
      background: linear-gradient(270deg, rgba(255, 255, 255, 0.88), transparent);
    }

    .neck-scroller.can-scroll-left::before,
    .neck-scroller.can-scroll-right::after {
      opacity: 1;
    }

    .fretboard {
      --fretboard-height: 265px;
      position: relative;
      min-width: 760px;
      height: var(--fretboard-height);
      border-radius: 8px;
      border: 1px solid rgba(68, 43, 26, 0.50);
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 18%, rgba(0, 0, 0, 0.10) 78%),
        repeating-linear-gradient(94deg, rgba(255, 255, 255, 0.08) 0 7px, rgba(90, 45, 25, 0.06) 7px 14px),
        linear-gradient(100deg, var(--wood-3), var(--wood-1) 28%, var(--wood-2) 68%, #a25631);
      box-shadow: inset 0 16px 24px rgba(255, 255, 255, 0.08), inset 0 -20px 34px rgba(38, 17, 8, 0.34);
      touch-action: none;
      user-select: none;
    }

    .fretboard.is-dragging {
      cursor: grabbing;
    }

    .fretboard:focus-visible {
      outline: 3px solid color-mix(in srgb, var(--teal) 55%, white);
      outline-offset: 4px;
    }

    .head-zone {
      position: absolute;
      inset: 0 auto 0 0;
      background:
        linear-gradient(90deg, rgba(35, 20, 13, 0.34), rgba(255, 255, 255, 0.08)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 40%, rgba(0, 0, 0, 0.16));
      border-right: 7px solid rgba(250, 250, 244, 0.90);
      box-shadow: 6px 0 18px rgba(48, 23, 12, 0.35);
      pointer-events: none;
      z-index: 2;
    }

    .fret-line {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.80), rgba(160, 168, 165, 0.90), rgba(255, 255, 255, 0.70));
      box-shadow: 1px 0 6px rgba(30, 18, 12, 0.28);
      pointer-events: none;
      z-index: 3;
    }

    .fret-line.is-end {
      width: 1px;
      opacity: 0.65;
    }

    .string {
      position: absolute;
      left: 0;
      right: 0;
      height: var(--thickness);
      top: var(--top);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), var(--string) 45%, rgba(130, 132, 124, 0.92));
      box-shadow: 0 1px 3px rgba(44, 24, 13, 0.46);
      pointer-events: none;
      z-index: 4;
    }

    .fret-marker {
      position: absolute;
      width: 17px;
      height: 17px;
      border-radius: 50%;
      background: rgba(248, 243, 224, 0.74);
      border: 1px solid rgba(91, 58, 30, 0.34);
      top: calc(50% - 8.5px);
      transform: translateX(-50%);
      pointer-events: none;
      z-index: 1;
    }

    .fret-marker.is-low {
      top: 39%;
    }

    .fret-marker.is-high {
      top: 61%;
    }

    .fret-zone {
      position: absolute;
      top: 0;
      bottom: 0;
      border: 0;
      background: transparent;
      color: rgba(255, 255, 255, 0.82);
      z-index: 7;
      padding: 0;
      border-radius: 0;
      cursor: pointer;
    }

    .fret-zone::before {
      content: "";
      position: absolute;
      inset: 0;
      background: transparent;
      transition: background 140ms ease;
    }

    .fret-zone:hover::before,
    .fret-zone:focus-visible::before {
      background: rgba(255, 255, 255, 0.12);
    }

    .fret-zone.is-active::before {
      background: linear-gradient(180deg, rgba(255, 249, 238, 0.26), rgba(18, 108, 98, 0.20));
      box-shadow:
        inset 0 0 0 3px rgba(255, 249, 238, 0.82),
        inset 0 0 0 6px rgba(12, 79, 72, 0.40);
    }

    .fret-zone span {
      position: absolute;
      left: 50%;
      bottom: 12px;
      transform: translateX(-50%);
      min-width: 30px;
      padding: 3px 7px;
      border-radius: 999px;
      background: rgba(24, 23, 19, 0.42);
      color: white;
      font-size: 0.76rem;
      font-weight: 850;
      pointer-events: none;
    }

    .fret-zone.is-active span {
      background: var(--teal-dark);
      color: white;
      outline: 2px solid rgba(255, 249, 238, 0.92);
      outline-offset: 2px;
    }

    .capo {
      position: absolute;
      top: 28px;
      bottom: 36px;
      width: 24px;
      border-radius: 999px;
      background: linear-gradient(90deg, #1e2527, #465156 45%, #151b1d);
      box-shadow: 0 12px 22px rgba(0, 0, 0, 0.34), inset 3px 0 4px rgba(255, 255, 255, 0.18), -8px 0 10px rgba(0, 0, 0, 0.10);
      transform: translateX(-50%);
      z-index: 10;
      pointer-events: none;
      display: none;
    }

    .capo.is-visible {
      display: block;
    }

    .capo::before {
      content: "";
      position: absolute;
      left: 50%;
      top: -17px;
      width: 50px;
      height: 22px;
      transform: translateX(-50%);
      border-radius: 999px;
      background: linear-gradient(180deg, #3f4c50, #151b1d);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
    }

    .capo::after {
      content: attr(data-label);
      position: absolute;
      left: 50%;
      bottom: -28px;
      transform: translateX(-50%);
      min-width: 74px;
      text-align: center;
      padding: 4px 7px;
      border-radius: 999px;
      background: var(--teal-dark);
      color: white;
      font-size: 0.75rem;
      font-weight: 850;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.20);
    }

    .capo-open {
      position: absolute;
      left: 12px;
      top: 14px;
      z-index: 11;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.88);
      color: var(--teal-dark);
      font-size: 0.76rem;
      font-weight: 850;
      box-shadow: 0 8px 18px rgba(28, 18, 10, 0.14);
      pointer-events: none;
      display: none;
    }

    .capo-open.is-visible {
      display: block;
    }

    .fret-readout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 14px;
      align-items: center;
      margin-top: -6px;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--surface);
    }

    .range-wrap {
      display: grid;
      gap: 5px;
    }

    .range-labels {
      display: flex;
      justify-content: space-between;
      color: var(--muted);
      font-size: 0.74rem;
      font-weight: 760;
    }

    input[type="range"] {
      width: 100%;
      min-height: 44px;
      accent-color: var(--teal);
    }

    .readout-number {
      width: 70px;
      min-height: 52px;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--teal), var(--blue));
      color: white;
      display: grid;
      place-items: center;
      font-weight: 900;
      font-size: 1.45rem;
      box-shadow: 0 12px 24px rgba(18, 108, 98, 0.20);
    }

    .content-section {
      padding: 34px 0;
      border-top: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.58);
    }

    .content-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      align-items: start;
    }

    .content-grid h2 {
      margin: 0;
      font-size: clamp(1.45rem, 3vw, 2.25rem);
      line-height: 1.08;
      letter-spacing: 0;
    }

    .content-grid p {
      margin: 10px 0 0;
      color: var(--muted);
    }

    .print-chart-btn {
      margin-top: 14px;
      min-height: 44px;
      border: 1px solid color-mix(in srgb, var(--teal) 46%, var(--line));
      border-radius: 8px;
      background: var(--surface);
      color: var(--teal-dark);
      padding: 0 14px;
      font-weight: 850;
    }

    .print-chart-btn:hover,
    .print-chart-btn:focus-visible {
      background: #f1faf7;
    }

    .copy-block {
      max-width: 760px;
    }

    .step-list {
      margin: 0;
      padding-left: 1.4rem;
      color: var(--muted);
    }

    .step-list li + li {
      margin-top: 8px;
    }

    .example-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .example-card {
      min-width: 0;
      min-height: 88px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--surface);
      padding: 14px;
      display: grid;
      align-content: start;
      gap: 6px;
    }

    .example-card strong,
    .example-card span {
      overflow-wrap: anywhere;
    }

    .example-card span {
      color: var(--teal-dark);
      font-weight: 850;
    }

    .table-wrap {
      overflow-x: auto;
      overscroll-behavior-x: contain;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--surface);
      scrollbar-color: var(--teal) var(--surface-2);
    }

    table {
      width: 100%;
      min-width: 720px;
      border-collapse: collapse;
      font-size: 0.92rem;
    }

    th,
    td {
      padding: 10px 12px;
      border-bottom: 1px solid var(--line);
      border-right: 1px solid var(--line);
      text-align: left;
      white-space: nowrap;
    }

    th:first-child,
    td:first-child {
      position: sticky;
      left: 0;
      z-index: 1;
      background: var(--surface);
      box-shadow: 1px 0 0 var(--line);
    }

    th {
      color: var(--teal-dark);
      background: var(--surface-2);
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    th:first-child {
      z-index: 2;
      background: var(--surface-2);
    }

    tr:last-child td {
      border-bottom: 0;
    }

    th:last-child,
    td:last-child {
      border-right: 0;
    }

    .faq-list {
      display: grid;
      gap: 10px;
    }

    details {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--surface);
      padding: 12px 14px;
    }

    summary {
      cursor: pointer;
      font-weight: 830;
    }

    details p {
      margin: 8px 0 0;
      color: var(--muted);
    }

    .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;
    }

    [data-tool-panel][data-active="false"] {
      display: none;
    }

    @media (max-width: 980px) {
      .tool-grid {
        gap: 14px;
      }
    }

    @media (max-width: 680px) {
      .topbar-inner,
      .section-inner {
        width: min(100% - 22px, 1180px);
      }

      .topbar-inner {
        min-height: 52px;
      }

      .brand span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .nav-pill {
        display: none;
      }

      .hero {
        padding: 14px 0 12px;
      }

      h1 {
        font-size: clamp(1.72rem, 8.2vw, 2.3rem);
        line-height: 1.04;
      }

      .eyebrow {
        margin-bottom: 5px;
        font-size: 0.74rem;
      }

      .lede {
        margin-top: 6px;
        font-size: 0.96rem;
      }

      .control-panel,
      .visual-panel {
        padding: 12px;
      }

      .visual-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        gap: 10px;
      }

      .visual-copy {
        font-size: 1rem;
        font-weight: 780;
        color: var(--ink);
      }

      .live-chip {
        justify-self: end;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
      }

      .quick-select {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 8px;
        padding: 8px;
      }

      .fretboard {
        --fretboard-height: 235px;
        min-width: 680px;
      }

      .neck-scroller {
        --fretboard-height: 235px;
      }

      .select-grid,
      .metric-grid,
      .examples,
      .fret-readout {
        grid-template-columns: 1fr;
      }

      .segmented {
        gap: 3px;
        padding: 3px;
      }

      .segmented button {
        padding-inline: 6px;
        font-size: 0.9rem;
      }

      .result-main {
        padding: 13px;
      }

      .result-value {
        font-size: clamp(1.42rem, 7.6vw, 1.82rem);
      }

      .content-section {
        padding: 28px 0;
      }

      .example-grid {
        grid-template-columns: 1fr;
      }

      table {
        min-width: 780px;
        font-size: 0.88rem;
      }

      .metric,
      .metric:nth-child(even),
      .metric:nth-last-child(-n + 2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .metric:last-child {
        border-bottom: 0;
      }

      .readout-number {
        width: 100%;
      }
    }

    @media (max-width: 380px) {
      .topbar-inner,
      .section-inner {
        width: min(100% - 18px, 1180px);
      }

      .control-panel,
      .visual-panel {
        padding: 10px;
      }

      .visual-header {
        grid-template-columns: 1fr;
      }

      .live-chip {
        justify-self: start;
      }

      .quick-select {
        grid-template-columns: 1fr;
      }
    }

    @media (orientation: landscape) and (max-height: 520px) and (max-width: 980px) {
      .topbar {
        position: static;
      }

      .topbar-inner {
        min-height: 48px;
      }

      .hero {
        padding: 10px 0 10px;
      }

      .lede {
        display: none;
      }

      .tool-shell {
        padding-bottom: 26px;
      }

      .fretboard {
        --fretboard-height: 190px;
        min-width: max(720px, 100%);
      }

      .neck-scroller {
        --fretboard-height: 190px;
      }

      .fret-readout {
        grid-template-columns: minmax(0, 1fr) 64px;
        padding: 9px;
      }

      .readout-number {
        min-height: 48px;
      }
    }

    @media print {
      .topbar,
      .hero,
      .tool-shell,
      .content-section:not([aria-labelledby="chart-title"]),
      .print-chart-btn {
        display: none !important;
      }

      body {
        background: white;
      }

      .content-section {
        border: 0;
        padding: 0;
        background: white;
      }

      .section-inner {
        width: 100%;
      }

      .table-wrap {
        overflow: visible;
        border: 0;
      }

      table {
        min-width: 0;
        font-size: 0.72rem;
      }

      th,
      td {
        padding: 5px 6px;
      }
    }
  
