/* ── ATP Portal — Benchmarks tab styles ─────────────────────── */

    .empty-state {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 300px;
      color: var(--text3)
    }

    .empty-state .icon {
      font-size: 32px;
      margin-bottom: 12px
    }

    .empty-state p {
      font-size: 13px
    }

    .bench-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 10px
    }

    .bench-field {
      display: flex;
      flex-direction: column;
      gap: 4px
    }

    .bench-field label {
      font-size: 11px;
      color: var(--text2)
    }

    .bench-field input {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 6px 10px;
      color: var(--text1);
      outline: none;
      width: 100%
    }
