:root {
  --navy: #031b4a;
  --ink: #06245a;
  --text: #1c365f;
  --muted: #657494;
  --line: #dce5f0;
  --green: #09a44f;
  --red: #e51f1a;
  --orange: #ed720d;
  --gold: #e29a19;
  --font-ui: 'Segoe UI', Arial, sans-serif;
  --font-title: 'Segoe UI', Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  background: var(--navy);
}
body {
  min-width: 0;
  margin: 0;
  background: linear-gradient(135deg, #061d4d, #021639);
  color: var(--text);
  font: 14px/1.35 var(--font-ui);
}
button,
input,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
img,
svg {
  max-width: 100%;
}
.dashboard-page {
  padding: 0 14px 14px;
}
.topbar {
  display: flex;
  align-items: center;
  gap: 26px;
  max-width: 1680px;
  height: 73px;
  margin: auto;
  color: #fff;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 50px;
  color: #e3a127;
  font: 700 17px var(--font-ui);
  letter-spacing: -0.04em;
  isolation: isolate;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.3));
}
.brand-mark:before,
.brand-mark:after {
  position: absolute;
  content: '';
}
.brand-mark:before {
  inset: 0;
  z-index: -2;
  clip-path: polygon(50% 1%, 91% 20%, 86% 74%, 50% 98%, 14% 74%, 9% 20%);
  background: #d89419;
}
.brand-mark:after {
  inset: 3px;
  z-index: -1;
  clip-path: polygon(50% 2%, 88% 20%, 83% 71%, 50% 94%, 17% 71%, 12% 20%);
  background: #061b46;
}
.brand-name {
  font: 700 21px/1 var(--font-title);
  letter-spacing: 0.035em;
}
.brand-name b {
  color: #e6a126;
}
.header-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.65);
}
.header-title {
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-left: auto;
}
.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.notification {
  position: relative;
  display: grid;
  place-items: center;
  margin-right: 20px;
  color: #fff;
}
.notification:after {
  position: absolute;
  top: -1px;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff302b;
  content: '';
}
.avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid #e2a128;
  border-radius: 50%;
  color: #e6a52c;
  font: 20px var(--font-title);
}
.admin-copy {
  display: grid;
  gap: 2px;
  line-height: 1.2;
}
.admin-copy b,
.admin-copy small {
  font-size: 12px;
}
.header-button {
  display: grid;
  place-items: center;
  padding: 6px;
  border: 0;
  background: transparent;
  color: #fff;
}
.page-shell {
  max-width: 1680px;
  margin: auto;
}
.content-canvas {
  min-height: calc(100vh - 88px);
  padding: 17px 26px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff, #fefefe);
  box-shadow: 0 12px 28px rgba(0, 7, 31, 0.26);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: #244e8d;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.breadcrumb .icon {
  width: 16px;
  height: 16px;
}
.breadcrumb i {
  color: #aebbd0;
  font-style: normal;
}
.breadcrumb a {
  color: #244e8d;
  text-decoration: none;
}
.breadcrumb b {
  color: #08275d;
}
.page-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  margin: 10px 0 20px;
}
.page-heading h1 {
  margin: 0;
  color: #092556;
  font: 700 30px/1.08 var(--font-title);
  letter-spacing: -0.02em;
}
.page-heading p {
  margin: 5px 0 0;
  color: #31466e;
}
.update-control {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 7px;
  color: #1f3b69;
  font-size: 13px;
  white-space: nowrap;
}
.refresh-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 41px;
  padding: 0 17px;
  border: 1px solid #1d4789;
  border-radius: 7px;
  background: #fff;
  color: #08275e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.refresh-button .icon,
.button .icon {
  width: 18px;
  height: 18px;
}
.button-primary {
  border-color: #031b4d;
  background: linear-gradient(135deg, #092b66, #031a48);
  color: #fff;
  box-shadow: 0 3px 8px rgba(3, 29, 74, 0.18);
}
.page-status,
.connection-status {
  display: none;
}
.page-status.error {
  display: block;
  margin: 0 0 10px;
  padding: 8px 11px;
  border-left: 3px solid var(--red);
  border-radius: 4px;
  background: #fff0ef;
  color: #b42620;
  font-weight: 650;
}
.filter-panel {
  display: grid;
  grid-template-columns: 1.35fr 1.12fr 1.08fr auto;
  gap: 16px;
  align-items: end;
  margin: 0 0 16px;
}
.filter-panel label,
.history-filters label {
  display: grid;
  gap: 5px;
  color: #63718e;
  font-size: 11px;
}
.filter-panel label > span {
  display: none;
}
.search-field {
  position: relative;
  display: block !important;
}
.search-field > .icon {
  position: absolute;
  z-index: 1;
  top: 11px;
  left: 16px;
  width: 19px;
  height: 19px;
  color: #0b2a60;
}
.search-field input {
  padding-left: 49px;
}
input,
select {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #d6e0ec;
  border-radius: 8px;
  background: #fff;
  color: #213960;
  outline: 0;
  box-shadow: 0 1px 2px rgba(8, 30, 66, 0.025);
}
input:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  border-color: #1b4d9a;
  outline: 3px solid rgba(36, 74, 139, 0.17);
  outline-offset: 1px;
}
.button-outline {
  border-color: #d6e0ec;
  white-space: nowrap;
}
.filter-panel .button {
  min-width: 127px;
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 16px;
}
.kpi {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
  min-height: 111px;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(8, 31, 72, 0.025);
}
.kpi-icon {
  display: grid;
  flex: 0 0 62px;
  place-items: center;
  width: 62px;
  height: 66px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e9f2ff, #d9e8fb);
  color: #0a306c;
}
.kpi:nth-child(2) .kpi-icon {
  background: linear-gradient(135deg, #e6f8eb, #cef3dd);
  color: #09a44f;
}
.kpi:nth-child(3) .kpi-icon {
  background: linear-gradient(135deg, #f3f5f7, #e5e9ee);
}
.kpi:nth-child(4) .kpi-icon {
  background: linear-gradient(135deg, #fff4e4, #ffe7c4);
  color: #e29a19;
}
.kpi:nth-child(n + 5) .kpi-icon {
  background: linear-gradient(135deg, #ffe9e7, #ffd9d6);
  color: #e52520;
}
.kpi-icon .icon {
  width: 34px;
  height: 34px;
}
.kpi-copy {
  min-width: 0;
}
.kpi h2 {
  margin: 0;
  color: #17345e;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.kpi strong {
  display: block;
  margin-top: 5px;
  color: #061f4d;
  font-size: 24px;
  line-height: 1.05;
}
.kpi-detail {
  min-height: 14px;
  margin: 7px 0 0;
  color: #5a6d8d;
  font-size: 11px;
  white-space: nowrap;
}
.kpi-detail:empty {
  display: none;
}
.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.16fr) minmax(340px, 0.95fr);
  gap: 14px;
}
.overview-grid > *,
.detail-layout > * {
  min-width: 0;
}
.panel {
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(8, 31, 72, 0.022);
}
.vehicle-panel {
  padding: 15px 16px 10px;
}
.latest-panel {
  padding: 15px 18px;
}
.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
}
.panel h2 {
  margin: 0;
  color: #0b2a60;
  font: 700 15px var(--font-title);
  letter-spacing: 0.02em;
}
.panel-title > a,
.panel-title > span {
  color: #2860ad;
  font-size: 12px;
  text-decoration: none;
}
.table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #e0e7f0;
  border-radius: 7px;
}
table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}
th {
  height: 39px;
  padding: 0 14px;
  background: #f5f7fa;
  color: #61708d;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
}
td {
  height: 44px;
  padding: 0 14px;
  border-top: 1px solid #e8edf4;
  color: #1b365f;
  font-size: 13px;
}
td:first-child strong {
  color: #102f63;
  font-size: 14px;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
}
.status:before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: '';
}
.status.online {
  color: var(--green);
}
.status.offline {
  color: #aab6c7;
}
.event-dot {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  margin-right: 8px;
  border-radius: 50%;
  vertical-align: middle;
  background: #fff0ea;
  color: var(--red);
}
.event-dot.warning {
  background: #fff1e4;
  color: var(--orange);
}
.event-dot .icon {
  width: 14px;
  height: 14px;
}
.button-small {
  min-height: 28px;
  padding: 0 10px;
  border-color: #cbd8eb;
  font-size: 11px;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
}
.pagination button {
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #112e5d;
  padding: 7px 10px;
  font-weight: 650;
}
.pagination button:not(:disabled):hover {
  background: #e9f0fc;
}
.pagination button:disabled {
  opacity: 0.38;
}
.pagination .active {
  padding: 7px 10px;
  border-radius: 6px;
  background: #06245b;
  color: #fff;
  font-weight: 700;
}
.event-timeline article {
  position: relative;
  min-height: 54px;
  padding: 8px 0 8px 52px;
  border-bottom: 1px solid #e6ecf3;
}
.event-timeline article:before {
  position: absolute;
  top: 8px;
  left: 0;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff1eb;
  color: var(--red);
  content: '';
}
.event-timeline article:after {
  position: absolute;
  top: 17px;
  left: 10px;
  width: 17px;
  height: 17px;
  background: center/contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e51f1a' stroke-width='1.8'%3E%3Cpath d='M2 12s3.5-5 10-5 10 5 10 5-3.5 5-10 5S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='2.5'/%3E%3Cpath d='m4 4 16 16'/%3E%3C/svg%3E");
  content: '';
}
.event-timeline article:nth-child(even):after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e51f1a' stroke-width='1.8'%3E%3Cpath d='M12 3a8 8 0 0 0-8 8v4h16v-4a8 8 0 0 0-8-8Z'/%3E%3Cpath d='M4 15h16M8 19h8M12 8v4M9.5 10.5h5'/%3E%3C/svg%3E");
}
.event-timeline article div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.event-timeline article div:first-child {
  color: #102e5e;
  font-size: 12px;
}
.event-timeline article div:last-child {
  margin-top: 2px;
  color: #5a6d90;
  font-size: 12px;
}
.event-timeline article div:first-child strong:first-child {
  order: 2;
  font-weight: 600;
}
.event-timeline article div:first-child strong:last-child {
  order: 1;
}
.empty {
  padding: 28px !important;
  color: #6c7d98 !important;
  text-align: center;
  font-style: italic;
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 378px;
  gap: 16px;
}
.detail-primary {
  min-width: 0;
}
.vehicle-summary {
  margin: 0 0 14px;
}
.vehicle-info {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 87px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(8, 31, 72, 0.025);
}
.vehicle-icon {
  display: grid;
  place-items: center;
  width: 87px;
  height: 60px;
  border-radius: 10px;
  background: linear-gradient(135deg, #dae9ff, #eef5ff);
  color: #0b3472;
}
.vehicle-icon .icon {
  width: 42px;
  height: 42px;
}
.vehicle-info h2 {
  margin: 0;
  color: #0b285d;
  font-size: 20px;
  letter-spacing: 0;
}
.vehicle-info p {
  margin: 7px 0 0;
  color: #526686;
  font-size: 12px;
}
.summary-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(105px, 1fr));
  gap: 20px;
  margin-left: auto;
  padding-left: 24px;
  border-left: 1px solid #e0e8f1;
}
.summary-meta span {
  display: grid;
  gap: 5px;
  color: #647492;
  font-size: 11px;
}
.summary-meta b {
  color: #1a3560;
  font-size: 12px;
}
.history-filters {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr auto auto;
  gap: 17px;
  align-items: end;
  margin: 0 0 14px;
  padding: 14px;
  border: 1px solid #e1e7ef;
  border-radius: 8px;
  background: #fff;
}
.history-filters .button {
  height: 42px;
}
.detail-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 14px;
}
.event-kpi {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 90px;
  padding: 15px;
  border: 1px solid #e0e6ee;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(8, 31, 72, 0.025);
}
.event-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: #ffe7e5;
  color: var(--red);
}
.event-icon .icon {
  width: 32px;
  height: 32px;
}
.event-kpi.warning .event-icon {
  background: #fff0dc;
  color: var(--orange);
}
.event-kpi small {
  display: block;
  color: var(--red);
  font-weight: 700;
}
.event-kpi.warning small {
  color: #c55d0d;
}
.event-kpi strong {
  display: block;
  margin: 2px 0;
  color: #092553;
  font-size: 25px;
  line-height: 1;
}
.event-kpi p {
  margin: 6px 0 0;
  color: #5b6e8d;
  font-size: 11px;
}
.chart-panel {
  margin-bottom: 8px;
  padding: 14px;
}
.line-chart-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.line-chart {
  display: block;
  min-width: 560px;
  width: 100%;
  height: 165px;
}
.line-chart .grid {
  stroke: #e5eaf2;
  stroke-width: 1;
}
.line-chart .axis-label {
  fill: #365887;
  font:
    10px 'Segoe UI',
    Arial,
    sans-serif;
}
.line-chart .series-eyes {
  fill: none;
  stroke: #e62924;
  stroke-width: 2;
}
.line-chart .series-away {
  fill: none;
  stroke: #ed720d;
  stroke-width: 2;
}
.line-chart .point-eyes {
  fill: #e62924;
}
.line-chart .point-away {
  fill: #ed720d;
}
.chart-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 9px 0 0;
  color: #405a83;
  font-size: 11px;
}
.legend {
  display: inline-block;
  width: 16px;
  height: 3px;
  margin-right: 6px;
  vertical-align: middle;
  background: #df2924;
}
.legend.away {
  background: #ed7b17;
}
.chart-note {
  display: none;
}
.history-panel {
  padding: 14px;
}
.history-panel .pagination {
  min-height: 50px;
}
.event-type {
  font-size: 11px;
  font-weight: 700;
}
.event-type.critical {
  color: #c92320;
}
.event-type.warning {
  color: #cb640f;
}
.detail-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
}
.device-panel,
.system-panel {
  padding: 15px;
}
.info-list {
  margin: 12px 0 0;
}
.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #e5ebf2;
}
.info-list div:last-child {
  border-bottom: 0;
}
.info-list dt {
  color: #657491;
  font-size: 12px;
}
.info-list dd {
  margin: 0;
  color: #1e3964;
  font-size: 12px;
  font-weight: 600;
  text-align: right;
}
.system-panel p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  margin: 0;
  border-bottom: 1px solid #e5ebf2;
  color: #657491;
  font-size: 12px;
}
.system-panel p:last-child {
  border: 0;
}
.system-panel b {
  color: #1a784b;
  font-weight: 650;
  text-align: right;
}
.notice {
  display: flex;
  gap: 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, #eaf2ff, #f5f9ff);
  color: #315a9d;
  padding: 15px;
  font-size: 12px;
  line-height: 1.6;
}
.notice .icon {
  flex: none;
  width: 20px;
  height: 20px;
  color: #1765d4;
}
footer {
  display: none;
}
.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
h1,
h2,
p,
td,
th {
  overflow-wrap: normal;
}
@media (max-width: 1439px) {
  .kpi-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1150px) {
  .overview-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .detail-sidebar {
    grid-template-columns: 1fr 1fr;
  }
  .notice {
    grid-column: 1/-1;
  }
  .summary-meta {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .dashboard-page {
    padding: 0 7px 8px;
  }
  .topbar {
    height: auto;
    min-height: 74px;
    flex-wrap: wrap;
    gap: 9px;
    padding: 11px 7px;
  }
  .brand-mark {
    width: 32px;
    height: 39px;
    font-size: 13px;
  }
  .brand-name {
    font-size: 17px;
  }
  .header-divider {
    display: none;
  }
  .header-title {
    order: 3;
    width: 100%;
    font-size: 14px;
  }
  .topbar-actions {
    gap: 7px;
  }
  .notification {
    display: none;
  }
  .avatar {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .admin-copy {
    display: none;
  }
  .content-canvas {
    min-height: calc(100vh - 130px);
    padding: 15px 13px;
    border-radius: 8px;
  }
  .breadcrumb {
    overflow-x: auto;
  }
  .page-heading {
    display: block;
    margin-bottom: 15px;
  }
  .page-heading h1 {
    font-size: 25px;
  }
  .page-heading p {
    font-size: 12px;
  }
  .update-control {
    justify-content: space-between;
    margin-top: 13px;
    font-size: 11px;
  }
  .filter-panel {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .kpi {
    gap: 10px;
    min-height: 98px;
    padding: 13px 8px;
  }
  .kpi-icon {
    flex-basis: 48px;
    width: 48px;
    height: 52px;
  }
  .kpi-icon .icon {
    width: 27px;
    height: 27px;
  }
  .kpi h2 {
    font-size: 11px;
    white-space: normal;
  }
  .kpi strong {
    font-size: 21px;
  }
  .kpi-detail {
    font-size: 9px;
    white-space: normal;
  }
  .vehicle-panel,
  .latest-panel {
    padding: 12px;
  }
  .overview-grid {
    gap: 10px;
  }
  .table-wrap {
    margin: 0 -1px;
  }
  .pagination {
    min-height: 49px;
  }
  .detail-sidebar {
    grid-template-columns: 1fr;
  }
  .notice {
    grid-column: auto;
  }
  .vehicle-info {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .summary-meta {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-left: 0;
    padding: 0;
    border: 0;
  }
  .history-filters {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .detail-kpis {
    grid-template-columns: 1fr;
  }
  .line-chart {
    height: 145px;
  }
  .panel-title {
    align-items: flex-start;
    flex-direction: column;
  }
  .event-timeline article {
    padding-right: 2px;
  }
}
@media (max-width: 479px) {
  .kpi-grid {
    grid-template-columns: 1fr;
  }
  .update-control {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .refresh-button {
    min-height: 36px;
    padding: 0 12px;
  }
  .detail-layout {
    gap: 10px;
  }
}
.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 32px 24px;
}
.login-shell {
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(300px, 390px);
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: 938px;
}
.login-card {
  width: 100%;
  color: #fff;
}
.login-card .eyebrow {
  margin: 0 0 10px;
}
.login-card h1 {
  margin: 0;
}
.login-card .muted {
  margin: 8px 0 0;
}
.login-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.login-form label {
  display: grid;
  gap: 7px;
}
.login-form .form-error {
  margin: 0;
}
.login-form .button {
  justify-self: start;
}
.demo-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 10, 32, 0.18);
}
.demo-card .eyebrow {
  margin: 0 0 8px;
}
.demo-card h2,
.demo-account h3 {
  margin: 0;
}
.demo-card h2 {
  font-size: 22px;
}
.demo-accounts {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.demo-accounts[hidden] {
  display: none;
}
.demo-account {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(1, 17, 50, 0.28);
}
.demo-account h3 {
  font-size: 15px;
}
.demo-account dl {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
}
.demo-account dl div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 10px;
}
.demo-account dt {
  color: #aebfda;
}
.demo-account dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 650;
}
.demo-note {
  margin: 0;
  padding: 11px 13px;
  border-left: 3px solid #e6a52c;
  border-radius: 0 6px 6px 0;
  background: rgba(230, 165, 44, 0.1);
  color: #dbe5f5;
  font-size: 13px;
}
@media (max-width: 760px) {
  .login-page {
    align-items: flex-start;
    padding: 28px 18px;
  }
  .login-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    max-width: 500px;
  }
  .demo-card {
    padding: 20px;
  }
}
.page-heading h1,
.latest-panel h2,
.system-panel h2 {
  font-family: var(--font-ui);
}
.dashboard-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 43px;
  padding: 0 14px;
}
.dashboard-nav a {
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 2px 0 0;
  border-bottom: 3px solid transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-decoration: none;
  white-space: nowrap;
}
.dashboard-nav a:hover,
.dashboard-nav a:focus-visible {
  color: #fff;
}
.dashboard-nav a.active {
  border-bottom-color: #e2a128;
  color: #fff;
}
@media (max-width: 767px) {
  .dashboard-nav {
    gap: 20px;
    overflow-x: auto;
    min-height: 42px;
    padding: 0 7px;
  }
  .dashboard-nav a {
    flex: 0 0 auto;
    font-size: 11px;
  }
}
