:root {
  --ac: #d4af37;
  --act: #d4af37;
  --bg: #0a0c0b;
  --panel: #0d100e;
  --card: #101413;
  --inner: #141816;
  --line: #1c211e;
  --line2: #1e2421;
  --line3: #232926;
  --line4: #33403a;
  --tx: #e8edea;
  --tx2: #d5dcd8;
  --tx3: #b9c2bc;
  --mut: #8a948e;
  --mut2: #6e7873;
  --track: #1a1f1c;
  --hov: #181d1a;
  --sh: 0 14px 30px rgba(0, 0, 0, 0.45);
  --ok-bg: #153021;
  --ok: #4ade80;
  --info-bg: #12283f;
  --info: #60a5fa;
  --warn-bg: #2b2612;
  --warn: #fbbf24;
  --err-bg: #331717;
  --err: #f87171;
  --logo-filter: invert(1) brightness(1.55) contrast(1.15);
  --logo-blend: screen;
}

html[data-theme="light"] {
  --act: #8a6a12;
  --bg: #f2f5ef;
  --panel: #ffffff;
  --card: #ffffff;
  --inner: #f5f7f2;
  --line: #e5eae0;
  --line2: #e5eae0;
  --line3: #dbe2d6;
  --line4: #c3cdbd;
  --tx: #151a13;
  --tx2: #2c332a;
  --tx3: #48513f;
  --mut: #6b7566;
  --mut2: #8a9384;
  --track: #e9ede4;
  --hov: #f3f6ef;
  --sh: 0 12px 28px rgba(24, 34, 18, 0.09);
  --ok-bg: #e2f5e9;
  --ok: #15803d;
  --info-bg: #e3edfd;
  --info: #1d4ed8;
  --warn-bg: #fbf0d8;
  --warn: #a16207;
  --err-bg: #fbe4e4;
  --err: #b91c1c;
  --logo-filter: none;
  --logo-blend: multiply;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  height: 100%;
  background: var(--bg);
  color: var(--tx);
  font-family: Archivo, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
.mono {
  font-family: "JetBrains Mono", monospace;
}
#app {
  height: 100%;
}

/* Login */
.login-wrap {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(900px 420px at 15% -10%, rgba(212, 175, 55, 0.18), transparent 55%),
    radial-gradient(700px 380px at 90% 110%, rgba(212, 175, 55, 0.08), transparent 50%),
    var(--bg);
}
.login-card {
  width: min(420px, 100%);
  background: var(--card);
  border: 1px solid var(--line2);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: var(--sh);
  animation: fadeup 0.2s ease-out;
}
.login-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.login-brand img {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.login-card label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mut2);
  margin: 12px 0 6px;
}
.login-card input {
  width: 100%;
  height: 38px;
  border-radius: 9px;
  border: 1px solid var(--line3);
  background: var(--inner);
  padding: 0 12px;
  outline: none;
}
.login-card input:focus {
  border-color: var(--ac);
}
.login-card .btn {
  width: 100%;
  margin-top: 18px;
}
.err-msg {
  color: var(--err);
  font-size: 12.5px;
  margin-top: 10px;
  min-height: 18px;
}

/* Shell */
.shell {
  display: flex;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  max-width: 100vw;
}
.main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sidebar {
  width: 236px;
  flex: none;
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border-right: 1px solid var(--line);
  z-index: 5;
  min-width: 0;
  overflow: hidden;
}
.brand {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid var(--line);
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
  filter: var(--logo-filter);
  mix-blend-mode: var(--logo-blend);
}
.brand .t1 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.05;
}
.brand .t2 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4em;
  color: var(--act);
}
.nav {
  flex: 1;
  overflow: auto;
  padding: 8px 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  scrollbar-width: none;
}
.nav::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.nav-sec {
  margin: 8px 8px 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mut);
}
.nav-more {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 7px 10px;
  margin-top: 4px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
  color: var(--mut);
  font-size: 12.5px;
  font-weight: 600;
  text-align: left;
}
.nav-more:hover {
  color: var(--tx3);
  background: var(--inner);
}
.nav-extra {
  display: none;
  flex-direction: column;
  gap: 1px;
}
.nav-extra.is-open {
  display: flex;
}
.nav button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 7px 10px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
  color: var(--tx3);
  font-size: 13px;
  font-weight: 500;
  text-align: left;
}
.nav button.active {
  background: rgba(212, 175, 55, 0.14);
  color: var(--act);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.22);
}
.nav .badge {
  margin-left: auto;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 5px;
  background: var(--inner);
  color: var(--mut);
}
.nav button.active .badge {
  background: rgba(212, 175, 55, 0.2);
  color: var(--act);
}
.theme-row {
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 6px;
  flex: none;
  min-width: 0;
}
.theme-row button {
  flex: 1;
  min-width: 0;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line3);
  background: var(--inner);
  color: var(--tx3);
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 6px;
}
.theme-row button.on {
  border-color: var(--ac);
  color: var(--act);
}
.userbox {
  padding: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a322c, #151916);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--act);
}
.userbox .name {
  font-size: 12.5px;
  font-weight: 600;
}
.userbox .role {
  font-size: 10.5px;
  color: var(--mut2);
}
.userbox .logout {
  margin-left: auto;
  background: none;
  border: 0;
  color: var(--mut2);
  cursor: pointer;
  padding: 4px;
}

.topbar {
  height: 62px;
  flex: none;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  min-width: 0;
}
.menu-btn {
  display: none;
  width: 36px;
  height: 36px;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  border: 1px solid var(--line3);
  background: var(--inner);
  color: var(--tx);
  cursor: pointer;
  padding: 0;
}
.sidebar-backdrop {
  display: none;
}
.topbar h1 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}
.topbar .sub {
  font-size: 11px;
  color: var(--mut2);
}
.grow {
  flex: 1;
}
.search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--inner);
  border: 1px solid var(--line3);
  border-radius: 9px;
  padding: 0 11px;
  height: 36px;
  width: min(280px, 36vw);
}
.search input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 12.5px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 36px;
  padding: 0 14px;
  border-radius: 9px;
  border: 0;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 700;
}
.btn-primary {
  background: var(--ac);
  color: #0a0c0b;
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.25);
}
.btn-ghost {
  background: var(--inner);
  border: 1px solid var(--line3);
  color: var(--tx3);
  font-weight: 600;
}
.btn-danger {
  background: var(--err-bg);
  color: var(--err);
  font-weight: 600;
}
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.content {
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 22px;
  max-width: 100%;
}
.grid-kpi {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 14px;
  min-width: 0;
}
.kpi {
  background: var(--card);
  border: 1px solid var(--line2);
  border-radius: 16px;
  padding: 17px;
  box-shadow: var(--sh);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease;
}
.kpi:hover {
  transform: translateY(-3px);
}
.kpi .lbl {
  font-size: 10.5px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--mut2);
  font-weight: 600;
}
.kpi .val {
  margin-top: 9px;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: "JetBrains Mono", monospace;
  color: var(--act);
}
.kpi .hint {
  margin-top: 6px;
  font-size: 11.5px;
  color: var(--mut2);
}

.card {
  background: var(--card);
  border: 1px solid var(--line2);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--sh);
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.card h3 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 600;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
  min-width: 0;
}
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table.data {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 12.5px;
}

.recent-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.recent-item {
  width: 100%;
  text-align: left;
  background: var(--inner);
  border: 1px solid var(--line3);
  border-radius: 12px;
  padding: 12px;
  color: inherit;
  cursor: pointer;
}
.recent-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
}
.recent-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.recent-client {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
}
.recent-route {
  margin-top: 4px;
  font-size: 12px;
  color: var(--tx3);
  word-break: break-word;
}
.recent-profit {
  margin-top: 8px;
  color: var(--act);
  font-size: 13px;
  font-weight: 600;
}
.status-list {
  display: flex;
  flex-direction: column;
}
.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  min-width: 0;
}
.status-row:last-child {
  border-bottom: 0;
}
.status-row b {
  flex: none;
}
.alert-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.alert-item {
  padding: 10px 11px;
  border-radius: 11px;
  background: var(--inner);
  border-left: 3px solid var(--warn);
  font-size: 12.5px;
}
.alert-item.tone-err {
  border-left-color: var(--err);
}
.alert-item .muted {
  margin-top: 2px;
  color: var(--mut2);
  font-size: 11.5px;
}
table.data th {
  text-align: left;
  font-size: 10.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mut2);
  font-weight: 600;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}
table.data td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
table.data tr:hover td {
  background: var(--hov);
}
.actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}
.chip-ok {
  background: var(--ok-bg);
  color: var(--ok);
}
.chip-info {
  background: var(--info-bg);
  color: var(--info);
}
.chip-warn {
  background: var(--warn-bg);
  color: var(--warn);
}
.chip-err {
  background: var(--err-bg);
  color: var(--err);
}
.chip-mut {
  background: var(--track);
  color: var(--mut);
}

.unit-card,
.op-card {
  background: var(--card);
  border: 1px solid var(--line2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sh);
  transition: transform 0.18s ease;
}
.unit-card:hover,
.op-card:hover {
  transform: translateY(-3px);
}
.unit-head {
  height: 88px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.22), transparent 55%),
    var(--inner);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.unit-body,
.op-body {
  padding: 14px 16px 16px;
}
.meta {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--tx3);
  margin-top: 10px;
}
.meta b {
  color: var(--tx);
  font-weight: 600;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
}
.form-grid .full {
  grid-column: 1 / -1;
}
.field label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mut2);
  margin-bottom: 6px;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 36px;
  border-radius: 9px;
  border: 1px solid var(--line3);
  background: var(--inner);
  padding: 8px 11px;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ac);
}
.field textarea {
  min-height: 72px;
  resize: vertical;
}

.modal-back {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
  z-index: 40;
  padding: 20px;
  animation: fadeup 0.18s ease-out;
  overflow: hidden;
}
.modal {
  width: min(720px, 100%);
  max-height: min(90vh, 90dvh);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line2);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  padding: 0;
}
.modal-head {
  flex: none;
  padding: 16px 18px 10px;
  border-bottom: 1px solid var(--line);
}
.modal-head h3 {
  margin: 0;
  font-size: 16px;
}
.modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 14px 18px;
  overscroll-behavior: contain;
}
.modal-actions {
  flex: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom, 0px));
  margin: 0;
  border-top: 1px solid var(--line);
  background: var(--panel);
}
.calc-box {
  background: var(--inner);
  border: 1px solid var(--line3);
  border-radius: 12px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}
.calc-box .big {
  grid-column: 1 / -1;
  font-size: 22px;
  font-weight: 700;
  color: var(--act);
  font-family: "JetBrains Mono", monospace;
}
.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--panel);
  border: 1px solid var(--line2);
  border-left: 3px solid var(--ac);
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: var(--sh);
  z-index: 50;
  animation: fadeup 0.18s ease-out;
  font-size: 13px;
  max-width: 320px;
}
.empty {
  padding: 28px;
  text-align: center;
  color: var(--mut2);
  font-size: 13px;
}
.tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.tabs button {
  height: 30px;
  padding: 0 12px;
  border-radius: 20px;
  border: 1px solid var(--line3);
  background: var(--inner);
  color: var(--tx3);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}
.tabs button.on {
  background: rgba(212, 175, 55, 0.16);
  border-color: rgba(212, 175, 55, 0.35);
  color: var(--act);
}
.split-viajes {
  display: grid;
  grid-template-columns: 352px 1fr;
  gap: 14px;
  min-height: 520px;
}
.trip-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 70vh;
  overflow: auto;
}
.trip-item {
  text-align: left;
  background: var(--card);
  border: 1px solid var(--line2);
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  color: inherit;
}
.trip-item.on {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.25);
}
.cost-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.cost-grid .c {
  background: var(--inner);
  border-radius: 11px;
  padding: 12px;
}
.cost-grid .c span {
  display: block;
  font-size: 10.5px;
  color: var(--mut2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cost-grid .c b {
  display: block;
  margin-top: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
}

@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .grid-kpi {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-2,
  .split-viajes,
  .form-grid,
  .cost-grid {
    grid-template-columns: 1fr;
  }
  .kpi .val {
    font-size: 22px;
  }
  .search {
    width: min(220px, 28vw);
  }
}

@media (max-width: 860px) {
  .shell {
    position: relative;
  }
  .menu-btn {
    display: inline-flex;
  }
  .sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(280px, 86vw);
    max-width: 280px;
    transform: translateX(-105%);
    transition: transform 0.22s ease;
    box-shadow: none;
    z-index: 30;
  }
  .shell.nav-open .sidebar {
    transform: translateX(0);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.45);
  }
  .sidebar-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 25;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .shell.nav-open .sidebar-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  .brand .t1,
  .brand .t2,
  .nav span.lbl,
  .userbox .meta-u {
    display: initial;
  }
  .nav span.lbl {
    display: inline;
  }
  .userbox .meta-u {
    display: block;
    min-width: 0;
  }
  .nav button {
    justify-content: flex-start;
  }
  .nav .badge {
    display: inline-block;
  }
  .theme-row {
    padding: 10px 12px;
  }
  .theme-row button {
    font-size: 12px;
    height: 36px;
  }
  .topbar {
    height: auto;
    min-height: 58px;
    padding: 10px 12px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .topbar .top-titles {
    flex: 1;
    min-width: 0;
  }
  .topbar h1 {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .topbar .sub {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .grow {
    display: none;
  }
  .search {
    order: 5;
    width: 100%;
    flex: 1 1 100%;
  }
  .btn-primary {
    height: 34px;
    padding: 0 10px;
    font-size: 12px;
    white-space: nowrap;
  }
  .content {
    padding: 14px 12px 24px;
  }
  .grid-kpi {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
  }
  .kpi {
    padding: 14px 12px;
    border-radius: 14px;
  }
  .kpi .lbl {
    font-size: 9.5px;
    letter-spacing: 0.08em;
  }
  .kpi .val {
    font-size: 18px;
    word-break: break-word;
  }
  .kpi .hint {
    font-size: 10.5px;
  }
  .card {
    padding: 14px;
  }
  .grid-cards {
    grid-template-columns: 1fr;
  }
  .modal {
    width: 100%;
    max-height: min(94dvh, 94vh);
    height: auto;
    border-radius: 16px 16px 0 0;
    align-self: end;
  }
  .modal-back {
    padding: 0;
    align-items: end;
    place-items: end stretch;
  }
  .modal-head {
    padding: 14px 14px 10px;
  }
  .modal-body {
    padding: 12px 14px 8px;
  }
  .modal-actions {
    padding: 10px 14px calc(12px + env(safe-area-inset-bottom, 0px));
  }
  .modal-actions .btn {
    flex: 1 1 auto;
    min-width: 0;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .field textarea {
    min-height: 56px;
  }
  .split-viajes {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .trip-list {
    max-height: 240px;
  }
  .cost-grid {
    grid-template-columns: 1fr 1fr;
  }
  .login-wrap {
    padding: 16px;
  }
  .login-brand img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 420px) {
  .grid-kpi {
    grid-template-columns: 1fr;
  }
  .kpi .val {
    font-size: 22px;
  }
  .cost-grid {
    grid-template-columns: 1fr;
  }
  .btn-primary#btnPrimary {
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
