:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: #f6f7fb;
  color: #192033;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(47, 111, 255, 0.18), transparent 30rem),
    linear-gradient(180deg, #fbfcff 0%, #f5f6fb 100%);
}

button,
input,
select {
  font: inherit;
}

.shell {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 48px;
}

.boot {
  padding: 48px;
  text-align: center;
  color: #697086;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.eyebrow {
  margin: 0 0 8px;
  color: #2f6fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.04em;
}

h2 {
  font-size: 18px;
}

.sub {
  margin-top: 10px;
  color: #697086;
}

.panel,
.metric {
  border: 1px solid rgba(36, 45, 78, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 48px rgba(27, 39, 73, 0.08);
  backdrop-filter: blur(12px);
}

.primary {
  border: 0;
  border-radius: 16px;
  padding: 13px 20px;
  color: white;
  background: linear-gradient(135deg, #2f6fff, #7c4dff);
  box-shadow: 0 12px 28px rgba(47, 111, 255, 0.28);
  cursor: pointer;
}

.primary:disabled {
  opacity: 0.65;
  cursor: progress;
}

.controls {
  display: grid;
  grid-template-columns: 180px minmax(310px, 1fr) 150px 92px 120px 150px 126px 100px;
  gap: 14px;
  align-items: end;
  padding: 18px;
}

label {
  display: grid;
  gap: 7px;
  color: #697086;
  font-size: 13px;
  font-weight: 600;
}

select,
input[type="text"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="file"],
input:not([type]) {
  width: 100%;
  height: 42px;
  border: 1px solid #d9deea;
  border-radius: 13px;
  padding: 0 12px;
  color: #1b2236;
  background: white;
  outline: none;
}

select:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="file"]:focus,
input:not([type]):focus {
  border-color: #2f6fff;
  box-shadow: 0 0 0 4px rgba(47, 111, 255, 0.12);
}

.route-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 8px;
  padding: 5px;
  border-radius: 16px;
  background: #eef2fb;
}

.route-tabs button {
  border: 0;
  border-radius: 12px;
  padding: 11px 8px;
  color: #5f687e;
  background: transparent;
  cursor: pointer;
}

.route-tabs button.active {
  color: #17203a;
  background: white;
  box-shadow: 0 8px 24px rgba(31, 45, 82, 0.1);
}

.route-tabs button.unavailable:not(.active) {
  color: #a6adbe;
}

.switch {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #28324b;
}

.switch input {
  width: 18px;
  height: 18px;
}

.hint {
  margin: 12px 2px 18px;
  color: #697086;
  font-size: 14px;
}

.hint.warn {
  color: #ad6500;
}

.auth-panel,
.user-panel,
.driver-panel,
.empty-bind-panel {
  margin-bottom: 18px;
  padding: 18px;
}

.auth-panel {
  max-width: 620px;
}

.auth-tabs {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 5px;
  border-radius: 16px;
  background: #eef2fb;
}

.auth-tabs button {
  border: 0;
  border-radius: 12px;
  padding: 10px 22px;
  color: #5f687e;
  background: transparent;
  cursor: pointer;
}

.auth-tabs button.active {
  color: #17203a;
  background: white;
  box-shadow: 0 8px 24px rgba(31, 45, 82, 0.1);
}

.auth-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  margin-top: 16px;
}

.auth-form .primary {
  height: 42px;
}

.auth-note {
  margin-top: 10px;
  color: #697086;
  font-size: 13px;
  line-height: 1.55;
}

.user-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.user-panel p {
  margin-top: 6px;
  color: #697086;
  font-size: 13px;
}

.driver-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.driver-grid .wide {
  grid-column: span 2;
}

.bundle-tools {
  display: grid;
  grid-template-columns: 210px minmax(280px, 1fr) 180px;
  gap: 12px;
  align-items: end;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #dce2ef;
}

.bundle-tools .primary,
.bundle-tools .ghost {
  height: 42px;
}

.bundle-upload {
  display: grid;
  grid-template-columns: 210px minmax(280px, 1fr) 210px;
  gap: 12px;
  align-items: end;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid #dce7ff;
  border-radius: 18px;
  background: #f7faff;
}

.bundle-upload .primary,
.bundle-upload .ghost {
  height: 42px;
}

.bundle-upload .danger-note {
  grid-column: 1 / -1;
  color: #9a5b00;
  font-size: 13px;
  line-height: 1.55;
}

.bundle-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.bundle-list article {
  min-width: 0;
  border: 1px solid #edf0f6;
  border-radius: 16px;
  padding: 12px;
  background: #fbfcff;
}

.bundle-list article.invalid {
  background: #fff8f7;
  border-color: #ffd6cf;
}

.bundle-list strong,
.bundle-list span,
.bundle-list small {
  display: block;
}

.bundle-list strong {
  color: #1d2842;
  font-size: 14px;
}

.bundle-list span {
  margin-top: 5px;
  overflow-wrap: anywhere;
  color: #697086;
  font-size: 12px;
}

.bundle-list small {
  margin-top: 5px;
  color: #2455c9;
  font-size: 12px;
}

.empty-bind-panel {
  color: #7a4a00;
  background: #fff8eb;
  border-color: #ffe2a7;
}

.filter-panel {
  margin-bottom: 18px;
  padding: 18px;
}

.filter-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.filter-head p {
  margin-top: 6px;
  color: #697086;
  font-size: 13px;
  line-height: 1.55;
}

.ghost {
  min-width: 88px;
  border: 1px solid #d9deea;
  border-radius: 14px;
  padding: 10px 13px;
  color: #2f4068;
  background: white;
  cursor: pointer;
}

.ghost:disabled {
  color: #a8afbf;
  cursor: not-allowed;
}

.filter-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.filter-group {
  min-width: 0;
  border: 1px solid #edf0f6;
  border-radius: 18px;
  padding: 14px;
  background: #fbfcff;
}

.group-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.group-title span {
  font-weight: 800;
}

.group-title small {
  color: #8992a6;
  font-size: 12px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid #dce2ef;
  border-radius: 999px;
  padding: 8px 12px;
  color: #3f4d6e;
  background: white;
  cursor: pointer;
}

.chip.active {
  border-color: rgba(47, 111, 255, 0.42);
  color: #164fd6;
  background: #eef4ff;
  box-shadow: 0 6px 18px rgba(47, 111, 255, 0.12);
}

.advanced-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.display-options {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px 220px;
  gap: 12px;
  align-items: end;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed #dce2ef;
}

.active-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #697086;
  font-size: 13px;
}

.active-strip b {
  border-radius: 999px;
  padding: 5px 9px;
  color: #2455c9;
  background: #eef4ff;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.metric {
  padding: 18px;
}

.metric span {
  display: block;
  color: #697086;
  font-size: 13px;
  font-weight: 700;
}

.metric strong {
  display: block;
  margin-top: 7px;
  font-size: 28px;
}

.metric small {
  display: block;
  margin-top: 4px;
  color: #8992a6;
  font-size: 12px;
}

.error-panel {
  margin-bottom: 16px;
  padding: 14px 16px;
  color: #9d2d1f;
  background: #fff4f2;
  border-color: #ffc9bf;
}

.warning-panel {
  margin-bottom: 16px;
  padding: 14px 16px;
  color: #8a5a00;
  background: #fff8e8;
  border-color: #f2d18b;
}

.driver-orders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.driver-orders-panel {
  padding: 18px;
}

.driver-orders-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.driver-orders-head p {
  margin-top: 6px;
  color: #697086;
  font-size: 13px;
  line-height: 1.55;
}

.driver-orders-head > span {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 6px 10px;
  color: #164fd6;
  background: #eef4ff;
  font-size: 13px;
  font-weight: 800;
}

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

.driver-order-list article {
  border: 1px solid #edf0f6;
  border-radius: 16px;
  padding: 12px;
  background: #fbfcff;
}

.driver-order-list strong,
.driver-order-list span {
  display: block;
}

.driver-order-list strong {
  color: #1d2842;
  font-size: 14px;
}

.driver-order-list span {
  margin-top: 5px;
  color: #697086;
  font-size: 13px;
}

.driver-order-tags {
  margin-top: 8px;
}

.selection-panel {
  margin-bottom: 18px;
  padding: 18px;
}

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

.selection-head p {
  margin-top: 6px;
  color: #697086;
  font-size: 13px;
  line-height: 1.55;
}

.selection-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.selection-actions span {
  color: #697086;
  font-size: 13px;
  font-weight: 800;
}

.action-message {
  margin-top: 10px;
  color: #2455c9;
  font-size: 13px;
}

.copy-fallback {
  margin-top: 12px;
  border: 1px solid #dce2ef;
  border-radius: 16px;
  padding: 12px;
  background: #fbfcff;
}

.copy-fallback-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.copy-fallback-head strong {
  color: #1d2842;
  font-size: 14px;
}

.copy-fallback textarea {
  width: 100%;
  min-height: 180px;
  border: 1px solid #d9deea;
  border-radius: 12px;
  padding: 12px;
  color: #1b2236;
  background: white;
  font: 13px/1.55 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  resize: vertical;
  -webkit-user-select: text;
  user-select: text;
}

.copy-fallback p {
  margin-top: 8px;
  color: #697086;
  font-size: 12px;
}

.selected-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.selected-list article {
  border: 1px solid #edf0f6;
  border-radius: 16px;
  padding: 12px;
  background: #fbfcff;
}

.selected-list strong,
.selected-list span {
  display: block;
}

.selected-list strong {
  margin-bottom: 5px;
  color: #1d2842;
  font-size: 14px;
}

.selected-list span {
  color: #697086;
  font-size: 13px;
}

.table-panel {
  overflow: hidden;
}

.table-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #edf0f6;
}

.table-title span {
  color: #697086;
  font-size: 13px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 1600px;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid #eef1f6;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

th {
  color: #697086;
  background: #fafbfe;
  font-size: 12px;
  font-weight: 800;
}

.th-sort {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.th-sort:hover {
  color: #2455c9;
}

.action-btn {
  border: 1px solid #dce2ef;
  border-radius: 999px;
  padding: 7px 10px;
  color: #3f4d6e;
  background: white;
  cursor: pointer;
  white-space: nowrap;
}

.action-btn.active {
  border-color: rgba(47, 111, 255, 0.42);
  color: #164fd6;
  background: #eef4ff;
}

.action-btn.accept {
  border-color: #ff6a4d;
  color: #fff;
  background: linear-gradient(135deg, #ff5e3a, #ff2d55);
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(255, 45, 85, 0.25);
}

.action-btn.accept:hover:not(:disabled) {
  filter: brightness(1.05);
  box-shadow: 0 2px 6px rgba(255, 45, 85, 0.4);
}

.action-btn.accept.busy {
  background: #ffb1a3;
  cursor: wait;
}

.action-btn.accept.done {
  background: #2ea043;
  border-color: #2ea043;
  color: #fff;
}

.action-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.row-actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: stretch;
}

tbody tr:hover {
  background: #f8faff;
}

.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.pill,
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  background: #eef4ff;
  color: #2455c9;
  font-size: 12px;
  font-weight: 700;
}

.pill.soft {
  color: #6a3fb5;
  background: #f3ecff;
}

.tag {
  margin: 0 4px 4px 0;
  background: #f1f3f8;
  color: #5c6478;
  font-weight: 600;
}

.tag.hot {
  margin-left: 6px;
  color: #b93813;
  background: #fff0e8;
}

.empty {
  padding: 32px;
  color: #697086;
  text-align: center;
}

.empty.compact {
  padding: 18px;
  border: 1px dashed #dce2ef;
  border-radius: 16px;
  background: #fbfcff;
  font-size: 13px;
}

@media (max-width: 1080px) {
  .hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .controls,
  .summary-grid,
  .filter-groups,
  .advanced-grid,
  .display-options,
  .driver-grid,
  .bundle-tools,
  .bundle-upload,
  .bundle-list,
  .driver-orders-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 24px, 1440px);
    padding-top: 20px;
  }

  .controls,
  .summary-grid,
  .filter-groups,
  .advanced-grid,
  .display-options,
  .auth-form,
  .driver-grid,
  .bundle-tools,
  .bundle-upload,
  .bundle-list,
  .driver-orders-grid {
    grid-template-columns: 1fr;
  }

  .driver-grid .wide {
    grid-column: auto;
  }

  .user-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-head {
    flex-direction: column;
  }

  .selection-head {
    flex-direction: column;
  }

  .selection-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .selection-actions .ghost,
  .copy-fallback-head .ghost {
    min-width: 0;
    flex: 1 1 120px;
  }

  .copy-fallback-head {
    align-items: stretch;
    flex-direction: column;
  }

  .selected-list {
    grid-template-columns: 1fr;
  }

  .route-tabs {
    grid-template-columns: 1fr;
  }
}

/* === v20.2: 抢单工具栏 + PK 状态面板 === */
.grab-toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px dashed var(--border, #444);
}
.grab-toolbar .inline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.grab-toolbar input[type="number"] {
  width: 90px;
  padding: 4px 6px;
  border-radius: 4px;
  border: 1px solid var(--border, #444);
  background: var(--bg, #1a1a1a);
  color: inherit;
}

.pk-status-panel {
  grid-column: 1 / -1;
  margin-top: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border, #444);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.15);
}
.pk-status-panel h3 {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: var(--muted, #999);
}
.pk-status-panel h4 {
  margin: 8px 0 4px 0;
  font-size: 12px;
  color: var(--muted, #999);
}
.pk-status-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pk-status-panel li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}
.pk-status-panel li.won {
  color: #6abf6a;
}
.pk-status-panel li.lost {
  color: #cc6666;
  opacity: 0.7;
}
.pk-status-panel li.cancelled {
  color: #999;
  opacity: 0.7;
}
.pk-status-panel code {
  font-size: 11px;
  font-family: ui-monospace, "SF Mono", monospace;
}
.pk-status-panel .elapsed {
  font-size: 11px;
  color: #999;
}
.pk-status-panel .result-tag {
  font-weight: 600;
  min-width: 80px;
}
.pk-status-panel .new-jg {
  font-size: 11px;
  color: #8a8;
  font-family: ui-monospace, monospace;
}
.pk-status-panel .time-ago {
  margin-left: auto;
  font-size: 10px;
  color: #777;
}
.pk-status-panel .empty-hint {
  font-size: 12px;
  color: var(--muted, #999);
  margin: 8px 0;
}
.pk-status-panel .pk-monitor-status {
  margin: 8px 0 0 0;
  font-size: 11px;
  color: var(--muted, #999);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pk-status-panel button.link {
  background: none;
  border: none;
  color: var(--link, #6af);
  cursor: pointer;
  font-size: 11px;
  padding: 0;
}

/* === v20.2: 用户区折叠 + 抢单条件面板 === */
.user-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.user-panel-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.user-panel-actions button.link {
  background: none;
  border: none;
  color: var(--link, #6af);
  cursor: pointer;
  font-size: 13px;
  padding: 4px 8px;
}
.user-panel-actions button.link:hover {
  text-decoration: underline;
}

.grab-filters {
  grid-column: 1 / -1;
  margin-top: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border, #444);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}
.grab-filters h4 {
  margin: 0 0 10px 0;
  font-size: 13px;
  color: var(--muted, #999);
  font-weight: 600;
}
.grab-filter-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.grab-filter-row:last-child { margin-bottom: 0; }
.grab-filter-row .inline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}
.grab-filter-row .inline > span:first-child {
  color: var(--muted, #999);
  min-width: 80px;
}
.grab-filter-row input[type="number"] {
  width: 80px;
  padding: 4px 6px;
  border-radius: 4px;
  border: 1px solid var(--border, #444);
  background: var(--bg, #1a1a1a);
  color: inherit;
  font-size: 12px;
}
.grab-filter-row select {
  padding: 4px 6px;
  border-radius: 4px;
  border: 1px solid var(--border, #444);
  background: var(--bg, #1a1a1a);
  color: inherit;
  font-size: 12px;
}
.grab-filter-row .unit {
  color: var(--muted, #777);
  font-size: 11px;
}

button.danger {
  color: #f88;
  border-color: rgba(255, 100, 100, 0.4);
}
button.danger:hover {
  background: rgba(255, 100, 100, 0.1);
}

/* === v20.3: 自动抢单 daemon 面板 === */
button.auto-on {
  background: linear-gradient(135deg, #28a745 0%, #218838 100%);
  color: #fff;
  border-color: #1e7e34;
}
button.auto-on:hover {
  filter: brightness(1.1);
}

.auto-grab-panel {
  grid-column: 1 / -1;
  margin-top: 12px;
  padding: 12px 16px;
  border: 1px solid #1e7e34;
  border-radius: 8px;
  background: rgba(40, 167, 69, 0.08);
}
.auto-grab-panel h3 {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #6abf6a;
}
.auto-grab-panel h4 {
  margin: 10px 0 6px 0;
  font-size: 12px;
  color: var(--muted, #999);
  font-weight: 600;
}
.auto-grab-info {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
}
.auto-grab-info strong {
  color: #fff;
  font-size: 14px;
}
.auto-grab-events ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 240px;
  overflow-y: auto;
}
.auto-grab-events li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  padding: 3px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  font-family: ui-monospace, "SF Mono", monospace;
}
.auto-grab-events .ts {
  color: #777;
  min-width: 70px;
}
.auto-grab-events .kind-tag {
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  min-width: 60px;
  text-align: center;
}
.auto-grab-events li.accept .kind-tag { background: #28a745; color: #fff; }
.auto-grab-events li.won .kind-tag { background: #28a745; color: #fff; }
.auto-grab-events li.error .kind-tag { background: #dc3545; color: #fff; }
.auto-grab-events li.tick .kind-tag { background: #555; }
.auto-grab-events li.start .kind-tag { background: #17a2b8; color: #fff; }
.auto-grab-events li.stop .kind-tag { background: #ffc107; color: #000; }
.auto-grab-events .paxjg {
  color: #aaa;
}
.auto-grab-events .msg {
  color: #ccc;
  flex: 1;
}
