:root {
  --bg: #f7f8fa;
  --surface: #fff;
  --ink: #182a39;
  --muted: #74818b;
  --line: #e4e9ed;
  --teal: #16756c;
  --teal-soft: #e8f3ef;
  --orange: #dc925c;
  --radius: 12px;
  font-family: Inter, "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid #58a79d;
  outline-offset: 4px;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #58a79d;
  outline-offset: 1px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font-size: 36px;
  letter-spacing: -1.3px;
  line-height: 1.25;
  font-weight: 650;
}
h2 {
  font-size: 20px;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 20px;
  line-height: 1.3;
}
small,
.muted {
  color: var(--muted);
}
.site-header {
  height: 86px;
  padding: 0 4.7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: white;
  gap: 30px;
}
.wordmark {
  display: flex;
  align-items: center;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.6px;
  white-space: nowrap;
}
.brand-mark {
  background: var(--teal);
  color: white;
  font-size: 28px;
  width: 37px;
  height: 39px;
  text-align: center;
  line-height: 33px;
  margin-right: 10px;
  border-radius: 9px;
}
.wordmark-light {
  font-weight: 400;
  color: #74818b;
}
.site-header nav {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 30px;
  margin-right: auto;
  margin-left: 36px;
  min-width: 0;
}
.site-header nav a {
  height: 100%;
  display: flex;
  align-items: center;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  padding-top: 3px;
  flex: 0 0 auto;
}
.site-header nav a.active {
  color: var(--teal);
  border-color: var(--teal);
  font-weight: 600;
}
.account {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
}
.avatar {
  display: grid;
  place-items: center;
  background: #edf1f3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
}
.text-button {
  background: none;
  border: none;
  color: var(--muted);
  padding: 6px 8px;
}
.private-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
}
main {
  max-width: 1480px;
  margin: auto;
  padding: 42px 4.7% 36px;
  min-height: calc(100vh - 160px);
}
.page-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-bottom: 32px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 1.7px;
  font-weight: 700;
  color: var(--teal);
  display: block;
  margin-bottom: 10px;
}
.page-heading p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 15px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid transparent;
  white-space: nowrap;
  min-height: 44px;
}
.primary {
  background: var(--teal);
  color: white;
}
.primary:hover {
  background: #0f6159;
}
.secondary {
  background: white;
  border-color: #d9e1e5;
}
.secondary:hover {
  background: #f1f5f5;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  padding: 23px 27px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.stat + .stat {
  border-left: 1px solid var(--line);
}
.stat > span {
  font-size: 12px;
  color: #65757e;
}
.stat strong {
  font-size: 33px;
  letter-spacing: -1px;
  line-height: 1.7;
  font-weight: 650;
}
.stat small {
  font-size: 11px;
}
.stat em {
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
}
.tiny-dot,
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #359f7e;
}
.tiny-dot {
  margin-left: 5px;
}
.status-dot {
  margin-right: 7px;
}
.schedule-stat {
  background: #f5faf8;
}
.sync-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0 34px;
  font-size: 11px;
  color: var(--muted);
  gap: 20px;
}
.sync-line a {
  color: var(--teal);
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.section-heading h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-heading h2 span {
  font-size: 11px;
  letter-spacing: 0;
  background: #e7eeed;
  color: var(--teal);
  padding: 3px 9px;
  border-radius: 20px;
}
.section-heading > .muted {
  font-size: 11px;
}
.filters {
  display: grid;
  grid-template-columns: 2fr 1.1fr 1.35fr 1.1fr auto;
  align-items: end;
  gap: 14px;
  background: white;
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 25px;
}
label {
  display: block;
  font-size: 12px;
  font-weight: 500;
}
label > span {
  display: block;
  margin-bottom: 7px;
  color: #62717c;
  font-size: 11px;
}
input:not([type="checkbox"]),
select,
textarea {
  width: 100%;
  height: 43px;
  border: 1px solid #dfe6e9;
  border-radius: 6px;
  padding: 9px 11px;
  background: white;
  color: var(--ink);
  min-width: 0;
}
input::placeholder {
  color: #99a3aa;
  font-size: 12px;
}
textarea {
  min-height: 110px;
  height: auto;
  resize: vertical;
}
.heading-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.heading-actions form {
  margin: 0;
}
.view-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  overflow-x: auto;
}
.view-tabs a {
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  color: var(--muted);
  white-space: nowrap;
}
.view-tabs a.active {
  color: var(--teal);
  border-color: #acd1ca;
  background: var(--teal-soft);
  font-weight: 650;
}
.catalog-filters {
  grid-template-columns: 1.6fr repeat(4, minmax(130px, 0.8fr));
}
.range-field {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
.range-field legend {
  color: #62717c;
  font-size: 11px;
  margin-bottom: 7px;
}
.range-field > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 7px;
}
.range-field > div > span {
  color: var(--muted);
  font-size: 10px;
}
.filter-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.card-heading,
.card-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.card-heading > div {
  min-width: 0;
}
.compact-form {
  flex: 0 0 auto;
}
.icon-button {
  border: 0;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  color: #829097;
  background: #f0f3f4;
}
.icon-button.selected {
  color: #b85b55;
  background: #fbeceb;
}
.card-actions {
  align-items: center;
  min-height: 38px;
  border-top: 1px solid #edf0f2;
  color: var(--muted);
  font-size: 10px;
}
.card-actions .text-button {
  color: var(--teal);
  padding-left: 0;
}
.stacked-action {
  margin-top: 10px;
}
.note-panel textarea {
  margin-bottom: 12px;
}
.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.comparison-table {
  min-width: 720px;
  table-layout: fixed;
}
.comparison-table th:first-child {
  width: 150px;
}
.comparison-table thead th {
  vertical-align: top;
}
.comparison-table tbody th {
  background: #fafbfb;
}
.comparison-table td {
  white-space: normal;
  vertical-align: top;
}
.compare-vehicle {
  display: grid;
  gap: 6px;
}
.compare-vehicle img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  border-radius: 7px;
  margin-bottom: 5px;
}
.compare-vehicle strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
}
.compare-vehicle .text-button {
  padding: 3px 0;
  color: var(--teal);
}
.filter-bottom {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2px;
  font-size: 11px;
  color: var(--muted);
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
}
.checkbox input {
  accent-color: var(--teal);
  width: 15px;
  height: 15px;
  margin: 0;
}
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 23px;
}
.vehicle-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.vehicle-card:hover {
  box-shadow: 0 8px 24px #182a390a;
  transform: translateY(-2px);
}
.vehicle-image {
  display: block;
  position: relative;
  aspect-ratio: 1.67;
  background: #e8edf0;
  overflow: hidden;
}
.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-badge,
.grade-badge {
  position: absolute;
  top: 13px;
  background: #ffffffeb;
  padding: 4px 9px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 650;
}
.image-badge {
  left: 13px;
}
.grade-badge {
  right: 13px;
  color: var(--teal);
}
.missing-data-badges {
  position: absolute;
  z-index: 2;
  left: 13px;
  bottom: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.missing-badge {
  padding: 4px 8px;
  border-radius: 5px;
  color: #794a2b;
  background: #fff4e8ed;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.card-content {
  padding: 20px 20px 0;
}
.vehicle-brand {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 700;
}
.card-content h3 {
  margin: 5px 0 4px;
  letter-spacing: -0.3px;
}
.variant {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 18px;
}
.spec-line {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  color: #71808b;
  font-size: 10px;
  margin: 15px 0 17px;
}
.spec-line span + span:before {
  content: "·";
  margin-right: 9px;
  color: #adb7bd;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #edf0f2;
  padding: 15px 0 17px;
}
.price-row small {
  display: block;
  font-size: 8px;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.price-row strong {
  font-size: 23px;
  letter-spacing: -0.5px;
  font-weight: 650;
}
.card-arrow {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  background: var(--teal-soft);
  color: var(--teal);
  border-radius: 50%;
  font-size: 19px;
}
.auction-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 10px;
  color: #73838c;
  border-top: 1px solid #edf0f2;
  padding: 12px 0;
}
.auction-meta span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.auction-meta time {
  white-space: nowrap;
}
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  font-size: 12px;
  color: var(--muted);
}
.pagination > div {
  display: flex;
  gap: 10px;
}
.snapshot-note {
  font-size: 11px;
  color: #89959d;
  margin-top: 25px;
  line-height: 1.8;
}
.notice {
  background: #edf5f3;
  color: #24685f;
  border: 1px solid #d6e9e3;
  border-radius: 7px;
  padding: 14px 18px;
  margin: 15px 0 22px;
  font-size: 13px;
}
.notice a {
  text-decoration: underline;
}
.notice.error {
  background: #fff4ee;
  border-color: #f2d8c9;
  color: #965331;
}
.empty-state {
  text-align: center;
  padding: 70px 20px;
  border: 1px dashed #d6dfe3;
  border-radius: 12px;
  background: white;
}
.empty-state p {
  color: var(--muted);
  margin: 10px 0 20px;
}
.empty-icon {
  font-size: 46px;
  color: var(--teal);
}
.no-photo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #819099;
  font-size: 12px;
}
.login-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 10%;
  max-width: 1080px;
  margin: 7vh auto;
  align-items: center;
}
.login-intro h1 {
  font-size: 48px;
  margin: 18px 0 25px;
  line-height: 1.16;
}
.login-intro p {
  font-size: 16px;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.85;
}
.login-detail {
  font-size: 11px;
  color: #7b898c;
  margin-top: 45px;
}
.login-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 38px;
  box-shadow: 0 12px 35px #18392a05;
}
.login-card h2 {
  font-size: 28px;
}
.login-card > p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
  margin-bottom: 26px;
}
.login-card label {
  margin: 16px 0 7px;
}
.login-card .button {
  width: 100%;
  justify-content: space-between;
  margin-top: 26px;
}
.login-card small {
  display: block;
  text-align: center;
  font-size: 10px;
  margin-top: 20px;
}
.back-link {
  display: inline-block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 25px;
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(290px, 1fr);
  gap: 28px;
  align-items: start;
}
.detail-layout > div,
.detail-layout > aside {
  min-width: 0;
}
.main-photo {
  background: #e8edf0;
  aspect-ratio: 1.5;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.main-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 650px;
}
.gallery {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  margin: 12px 0 25px;
  padding-bottom: 10px;
}
.thumbnail {
  padding: 0;
  flex: 0 0 87px;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  height: 63px;
  background: #e8edf0;
}
.thumbnail.selected {
  border-color: var(--teal);
}
.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.panel {
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 22px;
}
.panel h2 {
  margin-bottom: 20px;
}
.specifications {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin: 0;
}
.specifications > div {
  padding: 13px 0;
  border-bottom: 1px solid #edf0f2;
  min-width: 0;
}
dt {
  color: var(--muted);
  font-size: 11px;
}
dd {
  margin: 4px 0 0;
  font-size: 13px;
  overflow-wrap: anywhere;
}
.price-panel h2 {
  font-size: 34px;
}
.price-panel h2 .missing-badge {
  display: inline-block;
  font-size: 13px;
  vertical-align: middle;
}
.auction-details {
  margin: 20px 0 26px;
}
.auction-details > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 16px 0;
}
.auction-details dd {
  margin: 0;
  text-align: right;
}
.full-width {
  width: 100%;
}
.price-panel .muted {
  font-size: 11px;
  margin-top: 17px;
}
.archive-panel {
  background: #f0f5f3;
}
.archive-panel > p {
  font-size: 12px;
}
.archive-panel dl {
  margin-top: 20px;
}
.archive-panel dd {
  margin-bottom: 12px;
}
.preserve-lines {
  white-space: pre-wrap;
  font-size: 13px;
}
.history-panel {
  padding: 24px 0;
  overflow: hidden;
}
.history-panel .section-heading {
  padding: 0 24px;
}
.table-scroll {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  white-space: nowrap;
}
th {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: #f6f8f9;
  color: var(--muted);
  padding: 15px 24px;
  font-weight: 600;
}
td {
  font-size: 12px;
  padding: 19px 24px;
  border-bottom: 1px solid #edf0f2;
}
.count {
  font-weight: 700;
  color: var(--teal);
}
.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 10px;
  background: #f0f2f4;
}
.status-badge.success {
  background: #e9f5ef;
  color: #218160;
}
.status-badge.running {
  background: #e9f0fc;
  color: #4a6c98;
}
.status-badge.partial,
.status-badge.failed,
.status-badge.interrupted {
  background: #fff0e6;
  color: #a36639;
}
.run-error td {
  background: #fffaf6;
  padding-top: 12px;
  padding-bottom: 12px;
}
.run-error pre {
  white-space: pre-wrap;
  word-break: break-word;
  max-width: 100%;
  font-size: 11px;
}
.run-error summary {
  cursor: pointer;
  color: #a36639;
}
footer {
  border-top: 1px solid var(--line);
  padding: 24px 4.7%;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 9px;
  color: #8c989f;
  letter-spacing: 0.2px;
}
.footer-dot {
  margin: 0 9px;
  color: #bbc3c8;
}
@media (min-width: 1550px) {
  .vehicle-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 1100px) {
  .site-header nav {
    margin-left: 0;
    gap: 20px;
  }
  .account > span:not(.avatar) {
    display: none;
  }
  .filters {
    grid-template-columns: 2fr 1fr 1.3fr;
  }
  .catalog-filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .filter-bottom {
    grid-column: 1/-1;
  }
  .vehicle-grid {
    gap: 17px;
  }
  .card-content {
    padding: 16px 16px 0;
  }
  .stat {
    padding: 20px;
  }
  .login-layout {
    gap: 6%;
  }
}
@media (max-width: 850px) {
  .wordmark {
    font-size: 17px;
  }
  .site-header {
    padding: 0 24px;
    gap: 15px;
  }
  .site-header nav {
    gap: 15px;
    font-size: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }
  .site-header .account .avatar {
    display: none;
  }
  main {
    padding: 30px 24px;
  }
  .vehicle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  h1 {
    font-size: 30px;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .stat:nth-child(4) {
    border-top: 1px solid var(--line);
  }
  .detail-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .detail-layout aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
  }
  .login-intro h1 {
    font-size: 36px;
  }
  .login-card {
    padding: 26px;
  }
  .login-layout {
    gap: 30px;
  }
  .login-detail {
    line-height: 2;
  }
  .filters {
    grid-template-columns: 1fr 1fr;
  }
  .catalog-filters {
    grid-template-columns: 1fr 1fr;
  }
  .search-field {
    grid-column: 1/-1;
  }
  .filters .button {
    align-self: end;
  }
  .section-heading > .muted {
    display: none;
  }
}
@media (max-width: 600px) {
  .site-header {
    height: auto;
    min-height: 76px;
    padding: 17px 18px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .site-header nav {
    order: 3;
    width: 100%;
    max-width: 100%;
    height: 38px;
    gap: 18px;
  }
  .site-header nav a {
    padding: 0 0 8px;
  }
  .account {
    margin-left: auto;
  }
  .text-button {
    font-size: 11px;
  }
  .private-label {
    font-size: 8px;
    letter-spacing: 1px;
  }
  main {
    padding: 27px 18px;
  }
  .page-heading {
    align-items: flex-start;
    margin-bottom: 24px;
    flex-direction: column;
    gap: 20px;
  }
  h1 {
    font-size: 29px;
  }
  .eyebrow {
    font-size: 9px;
  }
  .page-heading p {
    font-size: 13px;
  }
  .page-heading .button {
    min-height: 40px;
    padding: 9px 15px;
  }
  .heading-actions {
    width: 100%;
    flex-wrap: wrap;
  }
  .catalog-filters {
    grid-template-columns: minmax(0, 1fr);
  }
  .catalog-filters .search-field,
  .catalog-filters .filter-bottom {
    grid-column: 1;
  }
  .filter-bottom {
    align-items: flex-start;
    gap: 16px;
  }
  .filter-checks {
    gap: 9px 15px;
  }
  .stats .stat {
    padding: 16px;
  }
  .stat strong {
    font-size: 29px;
  }
  .stat small {
    font-size: 10px;
  }
  .sync-line {
    align-items: flex-start;
    font-size: 10px;
    margin-bottom: 25px;
  }
  .sync-line a {
    white-space: nowrap;
  }
  .section-heading h2 {
    font-size: 18px;
  }
  .filters {
    padding: 15px;
    gap: 12px;
  }
  .filters label > span {
    font-size: 10px;
  }
  .filters .button {
    padding: 10px;
    font-size: 12px;
  }
  .vehicle-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .vehicle-image {
    aspect-ratio: 1.65;
  }
  .card-content {
    padding: 20px 20px 0;
  }
  .card-content h3 {
    font-size: 23px;
  }
  .spec-line {
    font-size: 11px;
  }
  .vehicle-brand {
    font-size: 10px;
  }
  .price-row strong {
    font-size: 25px;
  }
  .auction-meta {
    font-size: 11px;
  }
  .pagination .button {
    padding: 8px 11px;
    min-height: 37px;
  }
  .pagination {
    font-size: 10px;
  }
  .login-layout {
    display: block;
    margin: 20px auto;
  }
  .login-intro {
    margin-bottom: 30px;
  }
  .login-intro h1 {
    font-size: 36px;
  }
  .login-intro p {
    font-size: 14px;
  }
  .login-detail {
    display: none;
  }
  .login-card {
    padding: 25px;
  }
  .detail-layout aside {
    display: block;
  }
  .panel {
    padding: 22px;
  }
  .specifications {
    gap: 0 18px;
  }
  .specifications dd {
    font-size: 12px;
  }
  footer {
    flex-direction: column;
    font-size: 8px;
    padding: 20px 18px;
    gap: 7px;
  }
  .history-panel .section-heading {
    padding: 0;
  }
  .history-panel {
    padding: 20px;
  }
  th,
  td {
    padding: 14px 15px;
  }
}
