    input,
    select {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: #ffffff;
      color: var(--text);
      padding: 9px 10px;
      min-height: 38px;
    }

    .tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px;
    }

    .tab {
      border-radius: 999px;
      padding: 7px 12px;
      color: var(--muted);
    }

    .tab.active {
      color: var(--accent);
      background: var(--accent-soft);
      border-color: #b9ded9;
    }

    .table-wrap {
      overflow: auto;
      max-height: 620px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface);
    }

    .grid.route-list-mode .table-wrap {
      max-height: calc(100vh - 295px);
    }

    .route-pager {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 10px;
      color: var(--muted);
      font-size: 12px;
    }

    .route-pager[hidden] {
      display: none;
    }

    .route-pager button {
      min-height: 30px;
      padding: 5px 10px;
    }
