:root {
  color-scheme: light;
  font-family: Inter, "SF Pro Text", "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", system-ui, sans-serif;
  color: #17324b;
  background: #071a32;
  --proxy-page: #071a32;
  --proxy-line: rgba(184, 215, 232, .78);
  --proxy-ink: #163650;
  --proxy-muted: #728ca0;
  --proxy-blue: #087da8;
  --proxy-green: #159a6d;
  --proxy-red: #d94e68;
  --proxy-amber: #ba7a22;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { width: 100%; min-width: 320px; min-height: 100%; }
body.proxy-page {
  margin: 0;
  min-height: 100dvh;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: radial-gradient(circle at 8% 0, rgba(25,129,174,.24), transparent 32%), radial-gradient(circle at 92% 100%, rgba(22,93,142,.22), transparent 34%), var(--proxy-page);
}
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, input:focus-visible, select:focus-visible, a:focus-visible { outline: 2px solid rgba(24,177,202,.48); outline-offset: 2px; }
.proxy-shell {
  height: calc(100dvh - 28px);
  margin: 14px 14px 14px 90px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto minmax(0,1fr);
  gap: 12px;
}
.proxy-header,
.routing-panel,
.proxy-panel {
  border: 1px solid rgba(175,211,230,.82);
  background: linear-gradient(155deg, rgba(248,253,255,.98), rgba(229,244,252,.97));
  box-shadow: 0 18px 48px rgba(0,12,32,.22), inset 0 1px rgba(255,255,255,.8);
}
.proxy-header {
  min-height: 98px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 21px;
}
.proxy-header h1 { margin: 1px 0 3px; color: var(--proxy-ink); font-size: clamp(22px,2.3vw,32px); font-weight: 760; letter-spacing: -.04em; }
.proxy-header p { margin: 0; color: #55758a; font-size: 12px; font-weight: 450; line-height: 1.55; }
.proxy-header .eyebrow { color: #1c88a6; font-size: 9px; font-weight: 850; letter-spacing: .18em; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 8px; }
.api-state,
.actual-route {
  min-height: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 99px;
  color: #69869a;
  background: rgba(255,255,255,.7);
  font-size: 10px;
  white-space: nowrap;
}
.api-state i,
.actual-route i { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: #9db2c1; }
.api-state.online,
.actual-route.server,
.actual-route.proxy { color: #127b5a; background: #def5ea; }
.api-state.online i,
.actual-route.server i,
.actual-route.proxy i { background: #18a674; box-shadow: 0 0 0 3px rgba(24,166,116,.12); }
.api-state.error,
.actual-route.paused { color: #b53d56; background: #ffe7ec; }
.api-state.error i,
.actual-route.paused i { background: #e34d6a; }
.primary-button,
.secondary-button,
.row-action {
  min-height: 44px;
  border-radius: 11px;
  cursor: pointer;
  transition: .16s ease;
}
.primary-button,
.secondary-button { padding: 0 15px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; font-size: 11px; font-weight: 780; }
.primary-button { border: 0; color: #fff; background: linear-gradient(135deg,#078bae,#096b8c); box-shadow: 0 8px 18px rgba(8,117,151,.2); }
.secondary-button { border: 1px solid var(--proxy-line); color: #55768c; background: rgba(255,255,255,.78); }
.primary-button:hover { filter: brightness(1.07); transform: translateY(-1px); }
.secondary-button:hover { color: #087da8; border-color: #90c7dc; background: #fff; }
.primary-button:disabled,
.secondary-button:disabled,
.row-action:disabled { opacity: .5; cursor: wait; transform: none; }

.routing-panel { padding: 14px 16px 13px; border-radius: 17px; }
.routing-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.routing-heading > span:first-child { display: flex; flex-direction: column; gap: 2px; }
.routing-heading small { color: #2488a4; font-size: 8px; font-weight: 850; letter-spacing: .14em; }
.routing-heading strong { color: #294e66; font-size: 13px; font-weight: 720; }
.routing-modes { margin-top: 10px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
.routing-modes button {
  min-height: 58px;
  padding: 9px 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  border: 1px solid rgba(182,214,231,.86);
  border-radius: 12px;
  color: #45677c;
  background: rgba(255,255,255,.64);
  text-align: left;
  cursor: pointer;
}
.routing-modes button:hover { border-color: #8fc5d9; background: #fff; }
.routing-modes button[aria-checked="true"] { color: #0d6584; border-color: #48abc7; background: linear-gradient(145deg,#e2f7fb,#f7fdff); box-shadow: inset 3px 0 0 #1296b5, 0 7px 17px rgba(20,121,153,.1); }
.routing-modes strong { font-size: 11px; }
.routing-modes small { color: #7a94a4; font-size: 9px; line-height: 1.45; }
.routing-notice { margin: 9px 2px 0; color: #668397; font-size: 9px; font-weight: 450; line-height: 1.55; }
.routing-notice.warning { color: #a76615; }
.routing-notice.error { color: #b53d56; }

.proxy-panel { min-height: 0; overflow: hidden; display: flex; flex-direction: column; border-radius: 20px; }
.proxy-toolbar { min-height: 68px; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--proxy-line); }
.proxy-toolbar h2 { margin: 0 0 2px; color: #274b63; font-size: 14px; font-weight: 720; letter-spacing: -.015em; }
.proxy-toolbar p { margin: 0; color: #668397; font-size: 9px; font-weight: 450; line-height: 1.55; }
.check-progress { padding: 10px 16px 11px; border-bottom: 1px solid var(--proxy-line); background: rgba(236,249,253,.78); }
.check-progress[hidden] { display: none; }
.check-progress > div { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #315d75; }
.check-progress strong { min-width: 0; font-size: 11px; font-weight: 720; line-height: 1.4; }
.check-progress span { color: #087da8; font-size: 11px; font-weight: 740; font-variant-numeric: tabular-nums; }
.check-progress progress { width: 100%; height: 6px; margin: 7px 0 2px; display: block; overflow: hidden; border: 0; border-radius: 999px; background: #d2e7ef; accent-color: #078bae; }
.check-progress progress::-webkit-progress-bar { border-radius: 999px; background: #d2e7ef; }
.check-progress progress::-webkit-progress-value { border-radius: 999px; background: linear-gradient(90deg,#0aa2be,#087da8); }
.check-progress p { margin: 3px 0 0; color: #668397; font-size: 9px; font-weight: 450; line-height: 1.5; }
.proxy-search { width: min(340px,42vw); min-height: 38px; padding: 0 11px; display: flex; align-items: center; gap: 7px; border: 1px solid var(--proxy-line); border-radius: 11px; color: #7c99ab; background: rgba(255,255,255,.76); }
.proxy-search:focus-within { border-color: #70bad3; background: #fff; box-shadow: 0 0 0 3px rgba(28,151,185,.09); }
.proxy-search input { width: 100%; min-width: 0; border: 0; outline: 0; color: #21465f; background: transparent; font-size: 11px; }
.proxy-table-head,
.proxy-row {
  display: grid;
  grid-template-columns: minmax(180px,1.45fr) minmax(108px,.8fr) minmax(95px,.72fr) minmax(108px,.78fr) minmax(140px,1fr) minmax(220px,1.35fr);
  align-items: center;
  gap: 10px;
}
.proxy-table-head { min-height: 38px; padding: 0 16px; border-bottom: 1px solid rgba(195,219,232,.75); color: #8097a7; background: rgba(231,244,251,.58); font-size: 9px; font-weight: 760; }
.proxy-list { min-height: 0; flex: 1; overflow-x: hidden; overflow-y: auto; scrollbar-width: thin; scrollbar-color: #b5d2e2 transparent; }
.proxy-row { min-height: 76px; padding: 10px 16px; border-bottom: 1px solid rgba(200,221,233,.7); background: rgba(255,255,255,.25); }
.proxy-row:hover { background: rgba(255,255,255,.68); }
.proxy-node { min-width: 0; display: flex; align-items: center; gap: 10px; }
.node-mark { width: 40px; height: 40px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid #bddce9; border-radius: 12px; color: #147e9c; background: linear-gradient(145deg,#fff,#dff0f7); font-size: 15px; }
.node-copy { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.node-copy strong { overflow: hidden; color: #234860; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.node-copy small { color: #7d95a4; font-size: 9px; }
.protocol-pill { padding: 2px 5px; border-radius: 5px; color: #34738c; background: #e0f0f6; font-size: 8px; font-style: normal; }
.state-pill,
.circuit-pill { width: max-content; max-width: 100%; min-height: 25px; padding: 0 8px; display: inline-flex; align-items: center; gap: 5px; border-radius: 99px; font-size: 9px; white-space: nowrap; }
.state-pill i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.state-pill.healthy { color: #13805d; background: #ddf5e9; }
.state-pill.unhealthy { color: #bd4059; background: #ffe8ed; }
.state-pill.checking { color: #96702d; background: #fff2d9; }
.state-pill.unknown,
.state-pill.offline { color: #718897; background: #e8f0f4; }
.latency { color: #496c81; font-size: 11px; font-weight: 720; font-variant-numeric: tabular-nums; }
.latency small { display: block; margin-top: 2px; color: #8aa0ae; font-size: 8px; font-weight: 500; }
.binding-count { color: #466a80; font-size: 10px; }
.binding-count strong { color: #157a9b; font-size: 13px; font-weight: 720; font-variant-numeric: tabular-nums; }
.circuit-pill.closed { color: #127b5a; background: #def5ea; }
.circuit-pill.open { color: #bd4059; background: #ffe8ed; }
.circuit-pill.half_open,
.circuit-pill.cooling { color: #a4691b; background: #fff0d6; }
.circuit-pill.unknown { color: #718897; background: #e8f0f4; }
.circuit-copy { min-width: 0; }
.circuit-copy small { display: block; margin-top: 3px; overflow: hidden; color: #8ca0ad; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.row-actions { display: flex; align-items: center; justify-content: flex-end; gap: 5px; }
.row-action { min-width: 44px; padding: 0 9px; border: 1px solid #c6dce8; color: #55758a; background: rgba(255,255,255,.75); font-size: 9px; }
.row-action:hover { color: #087da8; border-color: #91c8dc; background: #fff; }
.row-action.danger { color: #bd4259; }
.row-action.danger:hover { color: #fff; border-color: #d6546b; background: #d6546b; }
.proxy-empty { min-height: 260px; height: 100%; padding: 34px 22px; display: grid; place-items: center; text-align: center; color: #748d9e; }
.proxy-empty > div { max-width: 360px; }
.proxy-empty .empty-icon { width: 60px; height: 60px; margin: 0 auto 13px; display: grid; place-items: center; border: 1px solid #c4dfec; border-radius: 19px; color: #2688a4; background: linear-gradient(145deg,#fff,#deedf5); box-shadow: 0 10px 25px rgba(38,108,139,.1); font-size: 22px; }
.proxy-empty strong { color: #3c6077; font-size: 13px; }
.proxy-empty p { margin: 7px 0 0; font-size: 10px; line-height: 1.65; }
.proxy-empty .secondary-button { margin-top: 14px; }
.proxy-skeleton { padding: 4px 16px; }
.proxy-skeleton span { height: 64px; margin: 8px 0; display: block; border-radius: 13px; background: linear-gradient(90deg,#dcecf5 20%,#f8fdff 45%,#dcecf5 70%); background-size: 240% 100%; animation: proxy-shimmer 1.2s ease infinite; }
@keyframes proxy-shimmer { from { background-position: 120% 0; } to { background-position: -120% 0; } }

.proxy-dialog { width: min(620px,calc(100vw - 28px)); max-height: calc(100dvh - 28px); padding: 0; overflow: hidden; border: 1px solid #a8cede; border-radius: 19px; color: #24475e; background: linear-gradient(155deg,#f9fdff,#e8f5fb); box-shadow: 0 28px 80px rgba(0,12,30,.46); }
.proxy-dialog::backdrop { background: rgba(1,15,28,.62); backdrop-filter: blur(5px); }
.proxy-dialog form { max-height: calc(100dvh - 30px); overflow-y: auto; }
.proxy-dialog header { min-height: 66px; padding: 12px 16px 12px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #c9e0eb; }
.proxy-dialog header > span { display: flex; flex-direction: column; gap: 2px; }
.proxy-dialog header small { color: #1b89a7; font-size: 8px; font-weight: 850; letter-spacing: .14em; }
.proxy-dialog header strong { font-size: 15px; }
.dialog-close { width: 44px; height: 44px; border: 0; border-radius: 12px; color: #628198; background: transparent; cursor: pointer; font-size: 24px; }
.dialog-close:hover { background: #deedf5; }
.form-grid { padding: 17px 20px 8px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-grid label { min-width: 0; display: flex; flex-direction: column; gap: 6px; color: #56768a; font-size: 10px; font-weight: 720; }
.form-grid label.wide { grid-column: 1 / -1; }
.form-grid input,
.form-grid select { width: 100%; height: 44px; padding: 0 11px; border: 1px solid #bfd9e7; border-radius: 10px; outline: 0; color: #21465e; background: rgba(255,255,255,.86); font-size: 11px; }
.form-grid input:focus,
.form-grid select:focus { border-color: #68b5cf; box-shadow: 0 0 0 3px rgba(24,143,177,.09); }
.form-grid label small { color: #8ca1ae; font-size: 8px; font-weight: 500; }
.inline-paste { margin-left: 6px; padding: 2px 7px; border: 1px solid #a9d1df; border-radius: 7px; color: #147c9b; background: rgba(255,255,255,.78); cursor: pointer; font-size: 8px; }
.toggle-field { justify-content: center; }
.toggle-control { min-height: 44px; padding: 0 11px; display: flex; align-items: center; gap: 8px; border: 1px solid #bfd9e7; border-radius: 10px; color: #41677e; background: rgba(255,255,255,.72); font-size: 10px; font-weight: 600; }
.toggle-control input { width: 18px; height: 18px; padding: 0; accent-color: #0d88aa; }
.security-note,
.binding-intro { margin: 8px 20px 14px; padding: 9px 11px; border-radius: 10px; color: #55778c; background: #dfedf4; font-size: 9px; line-height: 1.5; }
.security-note span { margin-right: 5px; color: #168f68; font-weight: 900; }
.proxy-dialog footer { min-height: 68px; padding: 12px 20px; display: flex; align-items: center; justify-content: flex-end; gap: 8px; border-top: 1px solid #c9e0eb; }
.binding-list { max-height: min(420px,50dvh); min-height: 130px; overflow-y: auto; padding: 0 20px 16px; display: grid; gap: 7px; }
.binding-option { min-height: 50px; padding: 7px 11px; display: flex; align-items: center; gap: 10px; border: 1px solid #c8dfe9; border-radius: 11px; color: #385e75; background: rgba(255,255,255,.65); cursor: pointer; }
.binding-option input { width: 18px; height: 18px; accent-color: #0d88aa; }
.binding-option span { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.binding-option strong,
.binding-option small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.binding-option strong { font-size: 11px; }
.binding-option small { color: #8299a8; font-size: 8px; }
.binding-empty { padding: 30px 16px; color: #7892a3; text-align: center; font-size: 10px; }
.import-dialog { width: min(760px,calc(100vw - 28px)); }
.import-dialog form > header { position: sticky; top: 0; z-index: 2; background: rgba(245,252,255,.98); }
.import-dialog form footer { position: sticky; bottom: 0; z-index: 2; background: rgba(238,248,253,.98); box-shadow: 0 -8px 20px rgba(29,87,115,.08); }
.import-body { padding: 16px 20px 4px; }
.import-body > p { margin: 0 0 10px; color: #668397; font-size: 9px; line-height: 1.65; }
.import-body textarea { width: 100%; min-height: 150px; padding: 12px; resize: vertical; border: 1px solid #b9d8e6; border-radius: 12px; outline: 0; color: #244b63; background: rgba(255,255,255,.86); font: 10px/1.65 ui-monospace,SFMono-Regular,Consolas,monospace; }
.import-body textarea:focus { border-color: #68b5cf; box-shadow: 0 0 0 3px rgba(24,143,177,.09); }
.import-tools { margin: 9px 0; display: flex; gap: 8px; }
.import-preview { max-height: 230px; overflow-y: auto; border: 1px solid #c6deea; border-radius: 12px; background: rgba(255,255,255,.58); }
.import-preview p { margin: 0; padding: 14px; color: #7892a3; font-size: 9px; }
.import-preview-row { min-height: 42px; padding: 8px 11px; display: grid; grid-template-columns: 46px minmax(130px,1fr) 90px minmax(90px,.7fr); align-items: center; gap: 8px; border-bottom: 1px solid #d2e4ed; color: #4d7186; font-size: 9px; }
.import-preview-row:last-child { border-bottom: 0; }
.import-preview-row.error { color: #b73f58; background: #fff0f3; }
.import-preview-row strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.proxy-row.sorting { cursor: grab; border-left: 3px solid #1594b5; background: rgba(237,250,255,.9); }
.proxy-row.sorting.dragging { opacity: .55; cursor: grabbing; }
.sort-index { min-width: 36px; color: #147e9c; font-size: 10px; font-weight: 850; }
.proxy-toast { position: fixed; left: 50%; bottom: 28px; z-index: 60; max-width: min(440px,calc(100vw - 28px)); padding: 10px 15px; border-radius: 11px; color: #fff; background: rgba(3,23,40,.94); box-shadow: 0 12px 34px rgba(0,0,0,.3); opacity: 0; pointer-events: none; transform: translate(-50%,10px); transition: .2s ease; font-size: 11px; }
.proxy-toast.show { opacity: 1; transform: translate(-50%,0); }

@media (max-width: 1040px) and (min-width: 761px) {
  .proxy-shell { margin: 8px 8px 8px 74px; height: calc(100dvh - 16px); gap: 8px; }
  .proxy-header { min-height: 86px; padding: 15px 18px; border-radius: 17px; }
  .proxy-table-head, .proxy-row { grid-template-columns: minmax(170px,1.4fr) 100px 88px 96px 125px minmax(186px,1.2fr); gap: 7px; }
  .proxy-row, .proxy-table-head { padding-right: 12px; padding-left: 12px; }
}

@media (max-width: 760px) {
  html { max-width: 100%; overflow-x: hidden; }
  body.proxy-page { width: 100%; min-width: 0; max-width: 100%; overflow: hidden; overflow-x: hidden; }
  .proxy-shell { width: 100%; min-width: 0; max-width: 100%; height: calc(100dvh - 64px - env(safe-area-inset-bottom)); margin: 0; padding: 0; overflow-x: hidden; display: flex; flex-direction: column; gap: 0; background: #edf7fd; }
  .proxy-header { min-height: auto; padding: 14px max(13px,env(safe-area-inset-right)) 12px max(13px,env(safe-area-inset-left)); align-items: flex-start; flex-direction: column; gap: 11px; border: 0; border-bottom: 1px solid #c5dce8; border-radius: 0; box-shadow: none; }
  .proxy-header,
  .routing-panel,
  .proxy-panel,
  .proxy-header > div { width: 100%; min-width: 0; max-width: 100%; }
  .proxy-header h1 { font-size: 23px; }
  .proxy-header > div:first-child p:last-child { font-size: 10px; }
  .header-actions { width: 100%; min-width: 0; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); align-items: stretch; }
  .api-state { grid-column: 1 / -1; width: auto; min-width: 0; padding: 0 8px; justify-self: start; }
  .header-actions .primary-button,
  .header-actions .secondary-button { width: 100%; min-width: 0; padding: 0 9px; white-space: normal; }
  .routing-panel { padding: 12px max(12px,env(safe-area-inset-right)) 11px max(12px,env(safe-area-inset-left)); border: 0; border-bottom: 1px solid #c5dce8; border-radius: 0; box-shadow: none; }
  .routing-heading { align-items: flex-start; flex-direction: column; }
  .actual-route { max-width: 100%; white-space: normal; }
  .routing-modes { width: 100%; min-width: 0; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 6px; }
  .routing-modes button { width: 100%; min-width: 0; max-width: 100%; min-height: 70px; padding: 8px; align-items: center; text-align: center; white-space: normal; }
  .routing-modes strong,
  .routing-modes small { width: 100%; min-width: 0; max-width: 100%; overflow-wrap: anywhere; white-space: normal; }
  .proxy-panel { min-height: 0; flex: 1; border: 0; border-radius: 0; box-shadow: none; }
  .proxy-toolbar { min-height: auto; padding: 10px 12px; align-items: stretch; flex-direction: column; gap: 8px; }
  .check-progress { padding: 10px 12px 11px; }
  .check-progress strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .proxy-search { width: 100%; min-height: 44px; }
  .proxy-table-head { display: none; }
  .proxy-list { padding: 8px 10px max(12px,env(safe-area-inset-bottom)); }
  .proxy-row { min-height: 0; margin-bottom: 8px; padding: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 9px; border: 1px solid #bfd9e7; border-radius: 15px; background: rgba(255,255,255,.72); }
  .proxy-node { grid-column: 1 / -1; }
  .proxy-row > [data-label]::before { content: attr(data-label); display: block; margin-bottom: 5px; color: #8ba0ad; font-size: 8px; }
  .row-actions { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4,1fr); }
  .row-action { min-width: 0; min-height: 44px; padding: 0 5px; }
  .proxy-empty { min-height: 220px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.wide { grid-column: auto; }
  .proxy-dialog footer .primary-button,
  .proxy-dialog footer .secondary-button { min-width: 96px; }
  .proxy-toast { bottom: calc(76px + env(safe-area-inset-bottom)); }
  .import-body { padding: 13px 12px 4px; }
  .import-dialog { width: calc(100vw - 16px); max-height: calc(100dvh - 16px); }
  .import-dialog form { max-height: calc(100dvh - 18px); }
  .import-dialog form footer { padding-bottom: max(12px,env(safe-area-inset-bottom)); }
  .import-body textarea { min-height: 118px; }
  .import-preview { max-height: min(190px,28dvh); }
  .inline-paste { min-height: 44px; margin: 4px 0 0 6px; padding: 0 10px; }
  .import-preview-row { grid-template-columns: 40px 1fr; }
  .import-preview-row span:nth-child(n+3) { grid-column: 2; }
}

@media (max-width: 390px) {
  .header-actions { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .routing-modes small { font-size: 8px; }
  .proxy-row { grid-template-columns: 1fr; }
  .proxy-node, .row-actions { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
