:root {
  --app-bg: #f3f6f9;
  --app-ink: #172231;
  --app-muted: #657184;
  --app-line: #dfe7ef;
  --app-brand: #b01824;
  --app-brand-dark: #8e1420;
  --app-blue: #17375f;
  --app-blue-soft: #eaf1f8;
  --app-danger: #b01824;
  --app-warning: #c9820d;
  --app-ok: #19735a;
  --app-card: rgba(255, 255, 255, 0.92);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: linear-gradient(180deg, #eef3f8 0%, #f8fafc 42%, #ffffff 100%);
  color: var(--app-ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-text-size-adjust: 100%;
}

.app-header {
  background: linear-gradient(90deg, #0d1d32 0%, #142b48 58%, #0d1d32 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 10px 26px rgba(13, 29, 50, 0.16);
  min-height: 74px;
}

.navbar-brand-wrap {
  display: grid;
  gap: 2px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 176px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 5px 12px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.navbar-brand {
  max-width: min(62vw, 820px);
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
  white-space: normal;
}

.eyebrow {
  color: #dbe8f5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.header-actions .btn {
  border-radius: 11px;
  min-height: 38px;
  font-weight: 800;
}

.active-nav {
  background: #fff;
  color: var(--app-blue) !important;
}

.notification-button {
  position: relative;
}

.notification-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border: 2px solid #16221c;
  border-radius: 999px;
  background: #e54848;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.readonly-mode .admin-write,
.readonly-mode #openVehicleFormBtn,
.readonly-mode #openQuitationFormBtn,
.readonly-mode .action-icons button[data-action="edit"],
.readonly-mode .action-icons button[data-action="delete"],
.readonly-mode .action-icons button[data-action="toggle"],
.readonly-mode .mobile-actions button[data-action="edit"],
.readonly-mode .mobile-actions button[data-action="toggle"] {
  display: none !important;
}

.icon-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
}

.logged-user {
  color: #d8eadf;
  font-size: 13px;
  font-weight: 700;
}

.app-shell {
  padding-top: 20px;
  padding-bottom: 34px;
}

.app-card {
  background: var(--app-card);
  border: 1px solid rgba(223, 231, 239, 0.95);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(28, 44, 40, 0.13);
  overflow: hidden;
}

.modal-dialog-scrollable {
  height: calc(100dvh - var(--bs-modal-margin) * 2);
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.modal-xl.modal-dialog-scrollable .modal-body,
.modal-lg.modal-dialog-scrollable .modal-body {
  max-height: calc(100dvh - 190px);
}

.dashboard-stage {
  width: 100%;
}

.dashboard-panel {
  min-height: calc(100vh - 108px);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--app-line);
}

.section-head h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0;
}

.section-head p {
  margin: 4px 0 0;
  color: var(--app-muted);
}

.form-label {
  color: #344138;
  font-size: 13px;
  font-weight: 800;
}

.form-control,
.form-select {
  border-color: var(--app-line);
  border-radius: 7px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--app-brand);
  box-shadow: 0 0 0 0.2rem rgba(31, 111, 91, 0.15);
}

.btn-success {
  --bs-btn-bg: var(--app-brand);
  --bs-btn-border-color: var(--app-brand);
  --bs-btn-hover-bg: var(--app-brand-dark);
  --bs-btn-hover-border-color: var(--app-brand-dark);
}

.btn {
  border-radius: 11px;
  font-weight: 700;
}

.btn-outline-success {
  --bs-btn-color: var(--app-brand);
  --bs-btn-border-color: rgba(22, 135, 102, 0.42);
  --bs-btn-hover-bg: var(--app-brand);
  --bs-btn-hover-border-color: var(--app-brand);
}

.btn-primary {
  --bs-btn-bg: var(--app-brand);
  --bs-btn-border-color: var(--app-brand);
  --bs-btn-hover-bg: var(--app-brand-dark);
  --bs-btn-hover-border-color: var(--app-brand-dark);
}

.btn-outline-primary {
  --bs-btn-color: var(--app-blue);
  --bs-btn-border-color: rgba(20, 54, 93, 0.35);
  --bs-btn-hover-bg: var(--app-blue);
  --bs-btn-hover-border-color: var(--app-blue);
}

.installment-box {
  padding: 14px;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  background: #f9fbf8;
}

.attachment-box {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--app-line);
  border-radius: 12px;
  background: #f8fafc;
}

.attachment-current {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--app-muted);
  font-size: 13px;
}

.attachment-current span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.attachment-actions {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
}

.attachment-box small {
  color: var(--app-muted);
  font-weight: 700;
}

.status-note-box {
  display: none;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #f0d08d;
  border-radius: 12px;
  background: #fff8e8;
}

.status-note-box.is-visible {
  display: block;
}

.attachment-inline {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  color: #344152;
  font-size: 13px;
  font-weight: 800;
}

.attachment-viewer {
  min-height: 70vh;
  background: #f8fafc;
}

.attachment-viewer img,
.attachment-viewer iframe {
  display: block;
  width: 100%;
  min-height: 70vh;
  border: 0;
  border-radius: 12px;
  background: #fff;
  object-fit: contain;
}

#vehicleForm .row + .row,
#vehicleForm .installment-box,
#vehicleForm .form-label.w-100 {
  margin-top: 14px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
}

.search {
  max-width: 360px;
  min-height: 42px;
  border-radius: 13px;
  background: #fbfdfc;
}

.dashboard-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: min(100%, 940px);
}

.dashboard-actions .btn {
  min-height: 44px;
  border-radius: 12px;
  padding-inline: 14px;
  box-shadow: none;
}

.btn-brand {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--app-brand);
  --bs-btn-border-color: var(--app-brand);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--app-brand-dark);
  --bs-btn-hover-border-color: var(--app-brand-dark);
}

.btn-soft-blue,
.btn-soft-red,
.btn-soft-navy {
  background: #fff;
  border: 1px solid var(--app-line);
  color: var(--app-blue);
}

.btn-soft-red {
  color: var(--app-brand);
}

.btn-soft-blue:hover,
.btn-soft-red:hover,
.btn-soft-navy:hover {
  background: var(--app-blue-soft);
  border-color: #c8d7e8;
  color: var(--app-blue);
}

.dashboard-search-box {
  display: flex;
  gap: 6px;
  flex: 1 1 360px;
  min-width: 320px;
  max-width: 520px;
}

.dashboard-search-box .search {
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
}

.dashboard-search-box .btn {
  flex: 0 0 44px;
  width: 44px;
  padding-inline: 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.quitation-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 14px 16px;
  border: 1px solid var(--app-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 34, 49, 0.06);
}

.metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #fff;
  font-size: 18px;
}

.metric-card strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.metric-card small {
  color: var(--app-muted);
  font-weight: 800;
}

.links-head {
  background: linear-gradient(135deg, #ffffff 0%, #eef5fb 100%) !important;
}

.links-featured {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.link-hero-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 118px;
  padding: 16px;
  border: 1px solid #cfdbea;
  border-radius: 20px;
  background: linear-gradient(135deg, #0d1d32 0%, #17375f 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(23, 34, 49, 0.14);
}

.link-hero-card.danger {
  background: linear-gradient(135deg, #8e1420 0%, #b01824 100%);
}

.link-hero-card:hover {
  color: #fff;
  transform: translateY(-1px);
}

.link-hero-card img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  padding: 8px;
}

.link-hero-card strong,
.useful-link-card strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
}

.link-hero-card span,
.useful-link-card small {
  display: block;
  line-height: 1.35;
}

.link-hero-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.links-block {
  margin-top: 18px;
}

.links-block-title {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--app-line);
  border-radius: 18px;
  background: #fff;
  margin-bottom: 12px;
}

.links-block-title > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--app-blue);
  color: #fff;
  font-size: 20px;
}

.links-block-title h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}

.links-block-title p {
  margin: 2px 0 0;
  color: var(--app-muted);
}

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

.useful-link-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 94px;
  padding: 14px;
  border: 1px solid var(--app-line);
  border-radius: 18px;
  background: #fff;
  color: var(--app-ink);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(23, 34, 49, 0.05);
}

.useful-link-card:hover {
  border-color: #bdd0e5;
  color: var(--app-ink);
  transform: translateY(-1px);
}

.court-link-card {
  background: linear-gradient(135deg, #ffffff 0%, #f6f1ff 100%);
  border-color: #dfd4ff;
}

.court-link-card .useful-link-logo {
  background: #ede7ff;
  color: #56369b;
}

.useful-link-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--app-blue-soft);
  color: var(--app-blue);
  font-size: 21px;
}

.useful-link-logo img {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #fff;
  object-fit: contain;
}

.useful-link-card small {
  color: var(--app-muted);
  font-size: 13px;
}

.useful-link-card em {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  padding: 4px 8px;
}

.link-direct {
  background: #e6f4ec;
  color: var(--app-ok);
}

.link-portal {
  background: #fff1d7;
  color: var(--app-warning);
}

.system-link-card {
  background: linear-gradient(135deg, #ffffff 0%, #eaf7f0 100%);
  border-color: #caead8;
}

.system-link-card .useful-link-logo {
  background: #e6f4ec;
  color: var(--app-ok);
}

.useful-link-open {
  color: var(--app-muted);
}

.dashboard-control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 2px 0 14px;
}

.quick-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.quick-filter {
  flex: 0 0 auto;
  min-height: 38px;
  border: 1px solid var(--app-line);
  border-radius: 999px;
  background: #fff;
  color: var(--app-blue);
  font-size: 13px;
  font-weight: 900;
  padding: 0 14px;
}

.quick-filter.active {
  background: var(--app-blue);
  border-color: var(--app-blue);
  color: #fff;
}

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

.smart-alert {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 78px;
  padding: 12px;
  border: 1px solid var(--app-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 34, 49, 0.05);
}

.smart-alert.empty-alert {
  grid-column: 1 / -1;
}

.smart-alert strong {
  display: block;
  color: var(--app-ink);
  font-size: 14px;
}

.smart-alert small {
  display: block;
  color: var(--app-muted);
  font-size: 12px;
  line-height: 1.35;
}

.smart-alert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: #fff;
}

.smart-alert-icon.danger {
  background: var(--app-brand);
}

.smart-alert-icon.warn {
  background: #d99018;
}

.smart-alert-icon.info {
  background: var(--app-blue);
}

.smart-alert-icon.ok {
  background: var(--app-ok);
}

.tutorial-body {
  background: #f8fafc;
}

.tutorial-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--app-line);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #eef5fb 100%);
  margin-bottom: 16px;
}

.tutorial-hero h3 {
  margin: 4px 0 8px;
  color: var(--app-ink);
  font-size: 28px;
  font-weight: 900;
}

.tutorial-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--app-muted);
  font-size: 15px;
}

.tutorial-print {
  min-height: 190px;
  padding: 16px;
  border: 1px solid #cfdbea;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(23, 34, 49, 0.1);
}

.print-top {
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--app-blue), var(--app-brand));
  margin-bottom: 14px;
}

.print-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.print-metrics span,
.print-row {
  display: block;
  height: 42px;
  border-radius: 12px;
  background: #eef3f8;
}

.print-row {
  height: 28px;
  margin-top: 10px;
}

.print-row.short {
  width: 72%;
}

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

.tutorial-card {
  min-height: 172px;
  padding: 16px;
  border: 1px solid var(--app-line);
  border-radius: 16px;
  background: #fff;
}

.tutorial-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--app-blue);
  color: #fff;
  margin-bottom: 12px;
}

.tutorial-card h4 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 900;
}

.tutorial-card p {
  margin: 0;
  color: var(--app-muted);
  font-size: 14px;
  line-height: 1.45;
}

.tutorial-walkthrough {
  display: grid;
  gap: 16px;
  margin: 18px 0;
}

.tutorial-section-title {
  padding: 16px 18px;
  border: 1px solid var(--app-line);
  border-radius: 16px;
  background: #fff;
}

.tutorial-section-title h3 {
  margin: 0 0 4px;
  font-size: 24px;
  font-weight: 900;
}

.tutorial-section-title p {
  margin: 0;
  color: var(--app-muted);
}

.walk-step {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
  padding: 16px;
  border: 1px solid var(--app-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 34, 49, 0.06);
}

.walk-print {
  position: relative;
  min-height: 260px;
  padding: 18px;
  border: 2px solid #d8e3ef;
  border-radius: 18px;
  background: #f8fafc;
  overflow: hidden;
}

.mock-header,
.mock-modal-title {
  height: 42px;
  border-radius: 13px;
  background: #0d1d32;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  padding: 8px 14px;
  margin-bottom: 14px;
}

.mock-toolbar,
.mock-footer-buttons,
.mock-link-buttons,
.mock-inputs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.mock-button,
.mock-search,
.mock-link-buttons span,
.mock-inputs span,
.mock-footer-buttons span,
.mock-save,
.mock-select,
.mock-attach,
.mock-menu-item {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid #ccd9e7;
  border-radius: 12px;
  background: #fff;
  color: var(--app-ink);
  font-weight: 800;
  padding: 8px 12px;
}

.mock-button.red,
.mock-save {
  background: var(--app-brand);
  border-color: var(--app-brand);
  color: #fff;
}

.mock-search {
  flex: 1;
  color: var(--app-muted);
  font-weight: 600;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 12px 0;
}

.mock-cards span,
.mock-table-line {
  display: block;
  height: 52px;
  border-radius: 14px;
  background: #eaf1f8;
}

.mock-table-line {
  height: 34px;
  margin-top: 10px;
}

.mock-table-line.short {
  width: 72%;
}

.mock-link-buttons span {
  flex: 1;
  justify-content: center;
  background: var(--app-blue);
  border-color: var(--app-blue);
  color: #fff;
}

.mock-select,
.mock-attach,
.mock-menu-item {
  width: 100%;
  margin-bottom: 12px;
}

.mock-payment-row {
  display: grid;
  grid-template-columns: 80px 90px 1fr 1fr;
  gap: 8px;
  align-items: center;
  min-height: 48px;
  padding: 8px;
  border: 1px solid #ccd9e7;
  border-radius: 12px;
  background: #eef9f3;
  margin-bottom: 10px;
}

.mock-payment-row.late {
  background: #fff0f0;
}

.mock-payment-row span {
  font-weight: 800;
}

.callout {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 999px;
  background: #ffcc00;
  color: #111827;
  font-size: 14px;
  font-weight: 900;
  padding: 8px 14px;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.18);
}

.callout::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 3px;
  background: #ffcc00;
  transform-origin: left center;
}

.callout-new {
  top: 62px;
  left: 74px;
}

.callout-new::after {
  left: -28px;
  top: 18px;
  transform: rotate(160deg);
}

.callout-links {
  top: 72px;
  left: 46px;
}

.callout-status {
  right: 20px;
  bottom: 70px;
}

.callout-paid {
  left: 102px;
  top: 108px;
}

.callout-export {
  left: 28px;
  bottom: 54px;
}

.callout-attach {
  left: 38px;
  bottom: 82px;
}

.callout-backup {
  right: 24px;
  top: 84px;
}

.walk-text {
  padding: 8px 6px;
}

.walk-text > span {
  display: inline-flex;
  margin-bottom: 8px;
  border-radius: 999px;
  background: var(--app-blue-soft);
  color: var(--app-blue);
  font-size: 13px;
  font-weight: 900;
  padding: 6px 12px;
}

.walk-text h4 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 900;
}

.walk-text ol {
  margin: 0;
  padding-left: 22px;
  font-size: 18px;
  line-height: 1.55;
}

.walk-text li {
  margin-bottom: 8px;
}

.tutorial-accordion .accordion-button {
  font-weight: 900;
}

.tutorial-steps,
.tutorial-list {
  margin-bottom: 0;
  padding-left: 20px;
}

.tutorial-steps li,
.tutorial-list li {
  margin-bottom: 8px;
}

.tutorial-status-list {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 12px;
  align-items: center;
}

.tutorial-status-list p {
  margin: 0;
  color: var(--app-muted);
}

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

.faq-grid div {
  padding: 12px;
  border: 1px solid var(--app-line);
  border-radius: 14px;
  background: #fff;
}

.faq-grid strong {
  display: block;
  margin-bottom: 4px;
}

.faq-grid p {
  margin: 0;
  color: var(--app-muted);
  font-size: 14px;
}

.bg-green {
  background: var(--app-blue);
}

.bg-amber {
  background: #d99018;
}

.bg-red {
  background: var(--app-brand);
}

.bg-purple {
  background: #244f80;
}

.table-wrap {
  border: 1px solid var(--app-line);
  border-radius: 16px;
  overflow: auto;
  background: #fff;
  max-height: calc(100vh - 330px);
  -webkit-overflow-scrolling: touch;
}

.table {
  --bs-table-hover-bg: #f4faf6;
  font-size: 13px;
  margin-bottom: 0;
}

.table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #f8fafc;
  padding: 12px 10px;
  border-bottom: 1px solid var(--app-line);
}

.table td {
  padding: 12px 10px;
  vertical-align: middle;
}

th {
  color: #465248;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.actions-th {
  width: 296px;
  text-align: center;
}

tr.overdue td {
  background: #fffaf4;
}

tr.overdue td:first-child {
  box-shadow: inset 4px 0 0 rgba(201, 130, 13, 0.6);
}

tr.pending-row td {
  background: #fff8e8;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.status-bell {
  color: var(--app-danger);
  font-size: 13px;
  animation: bellPulse 0.9s ease-in-out infinite;
}

@keyframes bellPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.28;
    transform: scale(1.18);
  }
}

.status.ok {
  background: #e6f4ec;
  color: var(--app-ok);
}

.status.clear {
  background: #e6f1ff;
  color: var(--app-blue);
}

.status.warn {
  background: #fff1d7;
  color: var(--app-warning);
}

.status.danger {
  background: #ffe6e6;
  color: var(--app-danger);
}

.status.archived {
  background: #ede7ff;
  color: #56369b;
}

.status.neutral {
  background: #eef1ee;
  color: #59645c;
}

.installment-pill {
  display: inline-flex;
  max-width: 260px;
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.installment-pill.ok,
.installment-text.ok {
  background: #e6f4ec;
  color: var(--app-ok);
}

.installment-pill.warn,
.installment-text.warn {
  background: #fff1d7;
  color: var(--app-warning);
}

.installment-pill.danger,
.installment-text.danger {
  background: #ffe6e6;
  color: var(--app-danger);
}

.installment-text {
  display: inline-block;
  border-radius: 7px;
  padding: 6px 8px;
}

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

.detail-item {
  display: grid;
  gap: 5px;
  padding: 13px;
  border: 1px solid var(--app-line);
  border-radius: 14px;
  background: #f9fbfa;
}

.detail-item span {
  color: var(--app-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-item strong {
  color: var(--app-ink);
  font-size: 15px;
  line-height: 1.35;
}

.detail-item.ok {
  background: #e6f4ec;
}

.detail-item.warn {
  background: #fff1d7;
}

.detail-item.danger {
  background: #ffe6e6;
}

.detail-item.archived {
  background: #ede7ff;
}

.detail-wide {
  grid-column: 1 / -1;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.row-actions .btn,
.row-actions button {
  min-height: 32px;
  padding: 0 9px;
  font-size: 12px;
}

.action-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 6px;
}

.icon-only {
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.action-icons .btn-success,
.action-icons .btn-warning,
.action-icons .btn-outline-primary,
.action-icons .btn-outline-success,
.action-icons .btn-outline-dark,
.action-icons .btn-outline-secondary,
.action-icons .btn-outline-danger {
  --bs-btn-bg: #fff;
  --bs-btn-color: var(--app-blue);
  --bs-btn-border-color: #d6e0ea;
  --bs-btn-hover-bg: var(--app-blue);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-border-color: var(--app-blue);
  background: var(--bs-btn-bg);
  color: var(--bs-btn-color);
  border-color: var(--bs-btn-border-color);
}

.action-icons button[data-action="consult"] {
  --bs-btn-bg: var(--app-brand);
  --bs-btn-color: #fff;
  --bs-btn-border-color: var(--app-brand);
  --bs-btn-hover-bg: var(--app-brand-dark);
  --bs-btn-hover-border-color: var(--app-brand-dark);
}

.action-icons button[data-action="charge"] {
  --bs-btn-bg: #f2a900;
  --bs-btn-color: #1d2430;
  --bs-btn-border-color: #f2a900;
  --bs-btn-hover-bg: #d99600;
  --bs-btn-hover-color: #1d2430;
  --bs-btn-hover-border-color: #d99600;
}

.action-icons button[data-action="delete"] {
  --bs-btn-color: var(--app-danger);
  --bs-btn-hover-bg: var(--app-danger);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-border-color: var(--app-danger);
}

.icon-only i {
  font-size: 13px;
}

.mobile-cards {
  display: none;
}

.mobile-app-home {
  display: none;
}

.mobile-welcome {
  padding: 4px 2px 12px;
}

.mobile-welcome span {
  color: var(--app-brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-welcome h3 {
  margin: 2px 0 0;
  color: var(--app-ink);
  font-size: 24px;
  font-weight: 900;
}

.mobile-search-panel {
  position: sticky;
  top: 0;
  z-index: 5;
  padding: 12px;
  border: 1px solid var(--app-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(23, 34, 49, 0.08);
  margin-bottom: 14px;
}

.mobile-search-panel label {
  display: block;
  margin-bottom: 6px;
  color: var(--app-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-search-row {
  display: flex;
  gap: 8px;
}

.mobile-search-row input {
  min-height: 52px;
  border-radius: 14px;
  font-size: 17px;
}

.mobile-search-row .btn {
  flex: 0 0 54px;
  border-radius: 14px;
}

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

.mobile-action-card {
  display: grid;
  gap: 5px;
  min-height: 132px;
  border: 0;
  border-radius: 22px;
  color: #fff;
  padding: 16px;
  text-align: left;
  box-shadow: 0 16px 32px rgba(23, 34, 49, 0.16);
}

.mobile-action-card i {
  font-size: 24px;
}

.mobile-action-card strong {
  display: block;
  font-size: 25px;
  line-height: 1.05;
}

.mobile-action-card span {
  font-size: 14px;
  font-weight: 900;
}

.mobile-action-card.is-red {
  background: linear-gradient(135deg, #b01824, #dc3545);
}

.mobile-action-card.is-amber {
  background: linear-gradient(135deg, #c9820d, #f2a900);
}

.mobile-action-card.is-blue {
  background: linear-gradient(135deg, #17375f, #2567a7);
}

.mobile-action-card.is-green {
  background: linear-gradient(135deg, #19735a, #25a273);
}

.mobile-action-card.is-navy {
  background: linear-gradient(135deg, #0d1d32, #244f80);
}

.mobile-action-card.is-purple {
  background: linear-gradient(135deg, #56369b, #7a56c2);
}

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

.mobile-section-head h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}

.mobile-section-head p {
  margin: 2px 0 0;
  color: var(--app-muted);
  font-size: 13px;
}

.mobile-priority-list {
  display: grid;
  gap: 10px;
}

.mobile-client-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--app-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(23, 34, 49, 0.06);
}

.mobile-client-card.is-late {
  border-color: #ffd0d0;
  background: #fff8f8;
}

.mobile-plate {
  display: block;
  color: var(--app-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-client-card strong {
  display: block;
  margin-top: 3px;
  color: var(--app-ink);
  font-size: 17px;
}

.mobile-client-card small {
  display: block;
  margin-top: 4px;
  color: var(--app-muted);
  font-size: 13px;
  line-height: 1.35;
}

.mobile-status {
  display: block;
  margin-top: 8px;
}

.mobile-client-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mobile-client-actions .btn {
  min-height: 44px;
  border-radius: 13px;
  font-weight: 900;
}

.mobile-empty {
  padding: 18px;
  border: 1px dashed var(--app-line);
  border-radius: 16px;
  background: #fff;
  color: var(--app-muted);
  text-align: center;
  font-weight: 800;
}

.empty {
  text-align: center;
  color: var(--app-muted);
  padding: 24px;
}

.consult-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

canvas {
  width: 100%;
  height: auto;
  margin-top: 14px;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  background: #fff;
}

.report-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.login-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(13, 29, 50, 0.92), rgba(20, 43, 72, 0.9)),
    #0c1b2f;
  overflow: hidden;
}

.login-wrap {
  width: min(100%, 460px);
  position: relative;
}

.login-wrap::before {
  content: "";
  position: absolute;
  inset: -74px -52px auto auto;
  width: 180px;
  height: 180px;
  border: 24px solid rgba(176, 24, 36, 0.18);
  border-radius: 50%;
}

.login-wrap::after {
  content: "";
  position: absolute;
  inset: auto auto -58px -44px;
  width: 150px;
  height: 150px;
  border: 22px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.login-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.login-brand {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--app-line);
}

.login-logo {
  width: min(100%, 300px);
  justify-self: center;
  border-radius: 16px;
  background: #fff;
  padding: 8px 14px;
  box-shadow: 0 14px 28px rgba(13, 29, 50, 0.12);
}

.login-brand span {
  color: var(--app-brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.login-title {
  display: grid;
  gap: 4px;
}

.login-title p {
  margin: 0;
  color: var(--app-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.login-card h1 {
  margin: 0;
  color: var(--app-ink);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0;
}

.login-title strong {
  color: var(--app-brand);
  font-size: 18px;
  line-height: 1.2;
}

.login-title small {
  color: var(--app-muted);
  font-size: 14px;
}

.login-error {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ffd0d0;
  border-radius: 12px;
  background: #fff0f0;
  color: #9a2727;
  padding: 11px 12px;
  font-weight: 700;
}

.login-field {
  display: grid;
  gap: 7px;
  position: relative;
  min-width: 0;
  color: #344152;
  font-size: 13px;
  font-weight: 900;
}

.login-field span {
  text-transform: uppercase;
}

.login-field i {
  position: absolute;
  left: 14px;
  bottom: 14px;
  color: var(--app-muted);
  pointer-events: none;
}

.login-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--app-line);
  border-radius: 13px;
  background: #f8fafc;
  color: var(--app-ink);
  font-size: 16px;
  outline: 0;
  padding: 0 14px 0 42px;
}

.login-field input:focus {
  border-color: var(--app-brand);
  background: #fff;
  box-shadow: 0 0 0 0.22rem rgba(176, 24, 36, 0.12);
}

.login-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 0;
  border-radius: 14px;
  background: var(--app-brand);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(176, 24, 36, 0.24);
}

.login-submit:hover {
  background: var(--app-brand-dark);
}

#fullReportCanvas {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

#quitationReportCanvas {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

#weeklyReportCanvas {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

#financialStatementCanvas {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

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

.payment-row {
  display: grid;
  grid-template-columns: 120px 90px 150px 150px minmax(220px, 1fr);
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid var(--app-line);
  border-radius: 14px;
  background: #fff;
}

.payment-row.late {
  background: #fff0f0;
  border-color: #ffd0d0;
}

.payment-row.paid {
  background: #eef9f3;
  border-color: #cbead9;
}

.payment-number {
  display: grid;
  gap: 3px;
}

.payment-number strong {
  font-size: 18px;
}

.payment-number small,
.payment-row label {
  color: var(--app-muted);
  font-size: 12px;
  font-weight: 800;
}

.payment-check {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
}

@media (max-width: 767.98px) {
  body {
    background: #fff;
  }

  .app-header {
    position: sticky;
    top: 0;
    z-index: 1030;
  }

  .app-header .container-fluid {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .navbar-brand {
    max-width: none;
    font-size: 20px;
  }

  .brand-lockup {
    align-items: center;
  }

  .brand-logo {
    width: 142px;
    height: 42px;
    padding: 6px 8px;
  }

  .header-actions {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
    padding-bottom: 4px;
  }

  .logged-user {
    display: none;
  }

  .header-actions .dropdown,
  .header-actions .btn {
    flex: 0 0 auto;
  }

  .header-actions .dropdown-toggle {
    width: 100%;
  }

  .app-shell {
    padding: 10px 10px 84px;
  }

  .app-card {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .dashboard-panel {
    min-height: auto;
  }

  #dashboardSection .card-header,
  #dashboardSection .metric-grid,
  #dashboardSection .dashboard-control-row,
  #dashboardSection .smart-alerts,
  #dashboardSection .table-wrap,
  #dashboardSection #vehicleCards {
    display: none !important;
  }

  .mobile-app-home {
    display: block;
  }

  #dashboardSection .card-body {
    padding-top: 14px;
  }

  .card-header,
  .card-body {
    padding-left: 10px;
    padding-right: 10px;
  }

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

  .section-head h2 {
    font-size: 20px;
  }

  .form-label {
    font-size: 14px;
  }

  .form-control,
  .form-select {
    min-height: 46px;
    font-size: 16px;
  }

  textarea.form-control {
    min-height: 112px;
  }

  .form-actions,
  .form-actions .btn {
    width: 100%;
  }

  .search {
    max-width: none;
  }

  .dashboard-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .dashboard-actions .btn {
    width: 100%;
  }

  .links-featured,
  .links-grid {
    grid-template-columns: 1fr;
  }

  .link-hero-card,
  .useful-link-card {
    min-height: 92px;
  }

  .links-block-title {
    align-items: flex-start;
  }

  .links-block-title h3 {
    font-size: 18px;
  }

  .dashboard-search-box {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    max-width: none;
  }

  .metric-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .dashboard-control-row {
    align-items: stretch;
    flex-direction: column;
  }

  .smart-alerts {
    grid-template-columns: 1fr;
  }

  .smart-alert {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .smart-alert .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .tutorial-hero,
  .tutorial-grid,
  .walk-step,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .tutorial-hero {
    padding: 14px;
  }

  .tutorial-hero h3 {
    font-size: 22px;
  }

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

  .walk-print {
    min-height: 230px;
    padding: 12px;
  }

  .walk-text h4 {
    font-size: 22px;
  }

  .walk-text ol {
    font-size: 16px;
  }

  .mock-toolbar,
  .mock-footer-buttons,
  .mock-link-buttons,
  .mock-inputs {
    flex-direction: column;
  }

  .mock-cards {
    grid-template-columns: 1fr;
  }

  .callout {
    position: static;
    margin: 8px 0;
  }

  .callout::after {
    display: none;
  }

  .quitation-metrics {
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: 82px;
    padding: 12px;
    border-radius: 14px;
  }

  .metric-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .metric-card strong {
    font-size: 23px;
  }

  .table-wrap {
    display: none;
  }

  .mobile-cards {
    display: grid;
    gap: 10px;
  }

  .vehicle-card {
    border: 1px solid var(--app-line);
    border-radius: 8px;
    background: #fff;
    padding: 12px;
    box-shadow: 0 7px 18px rgba(22, 34, 28, 0.08);
  }

  .vehicle-card.overdue {
    border-color: #f0c891;
    background: #fffaf3;
  }

  .vehicle-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
  }

  .vehicle-card h3 {
    margin: 4px 0 0;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .plate {
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    background: #16221c;
    color: #fff;
    min-height: 28px;
    padding: 0 9px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
  }

  .vehicle-card dl {
    display: grid;
    gap: 9px;
    margin: 0 0 12px;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .payment-row {
    grid-template-columns: 1fr;
  }

  .attachment-current {
    align-items: stretch;
    flex-direction: column;
  }

  .attachment-actions {
    width: 100%;
  }

  .attachment-actions .btn {
    flex: 1;
  }

  .vehicle-card dt {
    color: var(--app-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .vehicle-card dd {
    margin: 0;
    color: var(--app-ink);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
  }

  .login-page {
    padding: 14px;
  }

  .login-card {
    padding: 22px;
    border-radius: 20px;
  }

  .login-logo {
    width: min(100%, 260px);
  }

  .login-card h1 {
    font-size: 29px;
  }

  .login-title strong {
    font-size: 16px;
  }

  .mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .mobile-actions button {
    width: 100%;
    min-height: 44px;
    font-size: 14px;
  }

  .mobile-actions button:first-child {
    grid-column: 1 / -1;
  }

  .consult-grid {
    grid-template-columns: 1fr;
  }

  .modal-dialog {
    margin: 0;
    max-width: 100%;
    height: 100dvh;
  }

  .modal-content {
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    border: 0;
  }

  .modal-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-dialog-scrollable .modal-body {
    max-height: calc(100dvh - 144px);
  }

  .modal-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .modal-footer .btn {
    width: 100%;
  }

  .report-downloads {
    width: 100%;
  }

  .report-downloads .btn {
    flex: 1 1 100%;
  }

  canvas {
    max-height: 52vh;
    object-fit: contain;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .smart-alerts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .links-featured,
  .links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tutorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .walk-step {
    grid-template-columns: 1fr;
  }

  .dashboard-actions {
    width: min(100%, 720px);
  }
}

/* HEADER_FIX_DESKTOP_MAX */
.app-header {
  position: sticky;
  top: 0;
  z-index: 1030;
}

/* HOSTING_RESPONSIVE_FIX_20260508 */
.app-header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: nowrap;
}

.header-actions {
  min-width: 0;
}

.header-actions .btn {
  white-space: nowrap;
}

.table {
  min-width: 1120px;
}

@media (max-width: 1399.98px) {
  .brand-logo {
    width: 148px;
  }

  .navbar-brand {
    max-width: min(48vw, 640px);
    font-size: 24px;
  }

  .header-actions {
    gap: 7px;
  }

  .header-actions .btn {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 14px;
  }
}

@media (max-width: 1199.98px) {
  .app-header .container-fluid {
    align-items: stretch;
    flex-direction: column;
  }

  .navbar-brand {
    max-width: none;
  }

  .header-actions {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .logged-user {
    display: none;
  }

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

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

  .dashboard-actions .btn {
    flex: 1 1 150px;
  }

  .dashboard-search-box {
    flex: 1 1 100%;
    min-width: 0;
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  .brand-lockup {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .brand-logo {
    width: 136px;
    height: 40px;
  }

  .navbar-brand {
    font-size: 18px;
    line-height: 1.15;
  }

  .eyebrow {
    font-size: 11px;
  }
}