/* cells */
    .map-id {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      font-weight: 700;
      color: #60a5fa;
      white-space: nowrap;
    }

    .map-name {
      max-width: 240px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .map-num {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      text-align: right;
    }

    .map-pill {
      display: inline-flex;
      align-items: center;
      padding: 1px 7px;
      border-radius: 999px;
      font-size: 10px;
      font-weight: 700;
      border: 1px solid;
    }

    .map-pill.crit {
      color: #f87171;
      background: rgba(239, 68, 68, .1);
      border-color: rgba(239, 68, 68, .25);
    }

    .map-pill.ok {
      color: #4ade80;
      background: rgba(34, 197, 94, .08);
      border-color: rgba(34, 197, 94, .2);
    }

    .map-pill.warn {
      color: #fbbf24;
      background: rgba(245, 158, 11, .08);
      border-color: rgba(245, 158, 11, .2);
    }
