* { box-sizing: border-box; }

html {
  min-height: 100%;
  min-height: var(--app-vh, 100vh);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f3f4f6;
  overflow-x: hidden;
  min-height: 100%;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  -webkit-font-smoothing: antialiased;
}

.layout {
  display: flex;
  min-height: 100vh;
  min-height: var(--app-vh, 100vh);
}

.sidebar {
  width: 240px;
  background: #0f172a;
  color: white;
  padding: 15px;
}

.logo-box {
  background: white;
  border-radius: 8px;
  text-align: center;
  padding: 10px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #111827;
}

.title h2 { margin: 0; }
.title small { color: #94a3b8; }

.info-card {
  background: #1e293b;
  border-radius: 8px;
  padding: 10px;
  font-size: 12px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.user-card {
  background: #1e293b;
  border-radius: 8px;
  padding: 10px;
  font-size: 13px;
  margin-bottom: 15px;
}

.menu button {
  width: 100%;
  border: none;
  background: #1e293b;
  color: white;
  min-height: 42px;
  padding: 9px 10px;
  margin-bottom: 8px;
  border-radius: 6px;
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1.15;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.menu button.active,
.menu button.menu-open {
  background: #16a34a;
  color: #f0fdf4;
  box-shadow: inset 4px 0 0 #86efac;
}

.menu button.active::before,
.menu button.menu-open::before {
  content: "▸";
  margin-right: 7px;
  color: #bbf7d0;
  font-weight: 900;
}

.menu button:hover { background: #334155; }

.menu button.active:hover,
.menu button.menu-open:hover {
  background: #15803d;
}

.submenu {
  display: none;
  padding-left: 12px;
}

.submenu.is-open {
  display: block;
}

.submenu button {
  background: #263449;
  font-size: 13px;
  min-height: 38px;
}

.logout {
  margin-top: 12px;
  background: #b45309;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  width: 80px;
  cursor: pointer;
  font-size: 12px;
  text-align: center;
  justify-content: center;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.content {
  padding: 25px;
}

.page-title {
  font-size: 28px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 20px;
  font-weight: bold;
  margin: 22px 0 12px 0;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 400px;
  max-width: 100%;
}

.card-wide {
  width: 100%;
  max-width: 1100px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 6px;
}

.input-group input,
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

.full {
  grid-column: 1 / 3;
}

.btn {
  margin-top: 15px;
  background: #166534;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  touch-action: manipulation;
}

.btn-dark { background: #0f172a; }
.btn-edit { background: #0f766e; }
.btn-print { background: #1d4ed8; }
.btn-invoice { background: #7c3aed; }
.btn-warning { background: #b45309; }
.btn-delete { background: #991b1b; }

.customer-action-buttons,
.work-order-action-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(58px, 1fr));
  gap: 6px;
  align-items: center;
  min-width: 210px;
}

.customer-action-buttons .btn,
.work-order-action-buttons .btn {
  width: 100%;
  min-width: 0;
  min-height: 34px;
  margin-top: 0;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  border-radius: 5px;
}

.total-box {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 15px;
  margin-top: 15px;
  font-size: 15px;
  max-width: 420px;
}

.total-line {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid #e5e7eb;
}

.total-line:last-child {
  border-bottom: none;
}

.total-label {
  font-weight: bold;
  color: #111827;
}

.total-value {
  font-family: monospace;
  font-size: 16px;
  color: #111827;
}

.total-final {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 2px solid #111827;
  font-size: 20px;
  font-weight: bold;
}

.after-save-box {
  display: none;
  margin-top: 18px;
  background: #ecfdf5;
  border: 1px solid #86efac;
  border-radius: 10px;
  padding: 15px;
}

.report-box {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 15px;
  margin-top: 15px;
}

.footer {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  margin-top: auto;
}

table {
  max-width: 100%;
}

img,
video,
canvas {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select,
input[type="button"],
input[type="submit"] {
  -webkit-tap-highlight-color: rgba(15, 23, 42, 0.14);
}

@media (max-width: 900px) {
  .layout {
    display: block;
    min-height: 100vh;
    min-height: var(--app-vh, 100vh);
  }

  body {
    background: #eef2f7;
  }

  .sidebar {
    width: 100% !important;
    padding: 10px !important;
    position: sticky;
    top: 0;
    z-index: 30;
    max-height: 48vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.24);
  }

  .logo-box {
    padding-bottom: 8px !important;
    margin-bottom: 6px !important;
  }

  .logo-box img {
    width: 92px !important;
  }

  .info-card,
  .user-card {
    margin-bottom: 8px;
    padding: 8px;
  }

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

  .menu button {
    min-height: 42px;
    margin-bottom: 0;
    padding: 9px 10px;
    text-align: center;
    font-size: 13px;
    line-height: 1.2;
  }

  .submenu {
    grid-column: 1 / -1;
    padding-left: 0;
  }

  .submenu button {
    margin-bottom: 6px;
  }

  .logout {
    width: 100%;
  }

  .content {
    padding: 12px;
    overflow-x: hidden;
    min-width: 0;
  }

  .content table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .content th,
  .content td {
    white-space: nowrap;
  }

  .content * {
    max-width: 100%;
  }

  .page-title {
    font-size: 22px;
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .section-title {
    font-size: 17px;
    margin: 16px 0 10px;
  }

  .card,
  .card-wide {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px !important;
    border-radius: 8px !important;
    overflow-x: auto;
  }

  .form-grid,
  .finance-form-grid,
  .finance-report-filters,
  .finance-summary-grid,
  .wo-compact .form-grid,
  .wo-line-grid,
  .wo-text-grid,
  .wo-totals-layout {
    grid-template-columns: 1fr !important;
  }

  .full,
  .finance-form-grid .full {
    grid-column: 1 / -1 !important;
  }

  .input-group input,
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
    font-size: 16px;
  }

  .btn {
    width: 100%;
    min-height: 42px;
    margin-top: 10px;
  }

  .form-grid [style*="grid-template-columns"],
  .card [style*="grid-template-columns"],
  .card-wide [style*="grid-template-columns"],
  .content [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .content [style*="max-width:980px"],
  .content [style*="max-width:1100px"],
  .content [style*="max-width:1180px"] {
    max-width: 100% !important;
  }

  .content [style*="width:132px"],
  .content [style*="width:170px"],
  .content [style*="width:220px"] {
    width: 100% !important;
  }

  .content td [style*="display:flex"],
  .content td[style*="display:flex"] {
    flex-wrap: wrap !important;
    white-space: normal !important;
  }

  .total-box {
    max-width: 100%;
    padding: 12px;
  }

  .total-final {
    font-size: 18px;
  }

  .footer {
    font-size: 11px;
    padding: 8px;
  }

  #dashboardHero {
    min-height: auto !important;
    border-radius: 8px !important;
  }

  .dashboard-hero-inner {
    padding: 18px !important;
    gap: 22px !important;
  }

  .dashboard-title {
    font-size: 28px !important;
    line-height: 1.12 !important;
    max-width: 100% !important;
  }

  .dashboard-subtitle {
    font-size: 14px !important;
    line-height: 1.4 !important;
    max-width: 100% !important;
  }

  .dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 100% !important;
  }

  .dashboard-stat-card {
    min-height: 78px !important;
    padding: 12px !important;
  }

  .dashboard-stat-card [id],
  .dashboard-stat-card div:last-child {
    font-size: 24px !important;
  }

  .login-hero {
    min-height: calc(var(--app-vh, 100vh) - 24px) !important;
    border-radius: 8px !important;
    padding: 16px !important;
    background-position: center !important;
  }

  .login-shell {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    align-items: stretch !important;
  }

  .login-copy {
    text-align: left;
  }

  .login-brand {
    padding: 8px 10px !important;
    margin-bottom: 14px !important;
  }

  .login-brand-logo {
    height: 46px !important;
  }

  .login-title {
    font-size: 30px !important;
    line-height: 1.08 !important;
    max-width: 100% !important;
  }

  .login-subtitle {
    font-size: 14px !important;
    line-height: 1.38 !important;
    margin-top: 10px !important;
    max-width: 100% !important;
  }

  .login-panel {
    padding: 18px !important;
    border-radius: 8px !important;
  }
}

@media (max-width: 520px) {
  .menu {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .menu button {
    flex: 0 0 128px;
    min-height: 40px;
    padding: 8px 9px;
    font-size: 12px;
  }

  .submenu {
    flex: 0 0 100%;
  }

  .submenu[style*="block"],
  .submenu.is-open {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .submenu button {
    flex-basis: auto;
    width: 100%;
  }

  .logo-box {
    display: none;
  }

  .info-card {
    display: none;
  }

  .user-card {
    font-size: 12px;
    padding: 7px 8px;
  }

  .content {
    padding: 10px;
  }

  .card,
  .card-wide {
    padding: 12px !important;
  }

  .page-title {
    font-size: 20px;
  }

  .section-title {
    font-size: 16px;
  }

  .input-group input,
  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 42px;
  }

  .report-box,
  .after-save-box,
  .total-box {
    padding: 10px;
    border-radius: 8px;
  }

  .total-line {
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-hero-inner {
    padding: 14px !important;
  }

  .dashboard-title {
    font-size: 24px !important;
  }

  .dashboard-stats {
    grid-template-columns: 1fr !important;
  }

  .login-hero {
    min-height: calc(var(--app-vh, 100vh) - 20px) !important;
    padding: 12px !important;
  }

  .login-title {
    font-size: 25px !important;
  }

  .login-subtitle {
    display: none;
  }

  .login-panel {
    padding: 16px !important;
  }
}

@media (max-width: 380px) {
  .menu button {
    flex-basis: 116px;
    font-size: 11.5px;
  }

  .content {
    padding: 8px;
  }

  .card,
  .card-wide {
    padding: 10px !important;
  }
}

body.employers-active { overflow: hidden; }
body.employers-active .layout,
body.employers-active .main {
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
}
body.employers-active .content {
  height: calc(100vh - 42px);
  height: calc(100dvh - 42px);
  min-height: 0;
  padding: 8px;
  overflow: hidden;
}
body.employers-active .footer { flex: 0 0 42px; }
body.employers-active #contentArea {
  height: 100%;
  min-height: 0;
  overflow: hidden;
}
.employers-fit {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 8px;
  overflow: hidden;
}
.employers-fit .page-title {
  margin: 0;
  padding: 6px 10px;
  font-size: 20px;
  line-height: 1.1;
}
.employers-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  gap: 8px;
  overflow: hidden;
}
.employers-fit .card {
  min-height: 0;
  margin: 0;
  padding: 10px;
  overflow: hidden;
}
.employers-fit .section-title {
  margin-bottom: 8px;
  font-size: 17px;
}
.employers-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.employers-fit .form-group label {
  margin-bottom: 3px;
  font-size: 12px;
}
.employers-fit input,
.employers-fit select {
  min-height: 34px;
  padding: 7px 9px;
}
.employers-fit textarea {
  min-height: 54px;
  padding: 7px 9px;
  resize: none;
}
.employers-actions,
.employers-search-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.employers-actions { margin-top: 8px; }
.employers-fit .btn {
  min-height: 34px;
  margin: 0;
  padding: 7px 10px;
}
.employers-list-card {
  display: flex;
  flex-direction: column;
}
.employers-search-row .input-group {
  flex: 1;
  margin: 0;
}
.employers-fit #employersList {
  flex: 1;
  min-height: 0;
  margin-top: 8px;
  overflow: auto;
}
.employers-fit #employersList table {
  font-size: 13px;
}
.employers-fit #employersList th,
.employers-fit #employersList td {
  padding: 6px;
}

@keyframes smGridDrift { from { transform: translate3d(-35%,0,0); } to { transform: translate3d(35%,0,0); } }
@keyframes smTypingCursor { 0%,48% { opacity: 1; } 49%,100% { opacity: 0; } }

@media (max-width: 1100px) {
  .sm-stage { grid-template-columns: 1fr; }
  .sm-visual-stage { min-height: auto; display: grid; gap: 16px; margin-left: 0; width: 100%; }
  .sm-phone-demo { position: relative; right: auto; top: auto; margin: 0 auto; }
  .sm-channel-ring { min-height: auto; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
  .sm-channel { position: relative; left: auto !important; top: auto !important; width: 100%; }
  .sm-command,.sm-flow { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 720px) {
  .sm-stage,.sm-command,.sm-flow,.sm-showcase,.sm-proof-grid,.sm-form-grid { grid-template-columns: 1fr; }
  .sm-stage { padding: 20px; }
  .sm-phone-demo { width: min(300px, calc(100vw - 96px)); min-height: 380px; }
  .sm-channel-ring { grid-template-columns: 1fr; }
  .sm-span-2 { grid-column: auto; }
}

/* ER2B email/SMS actions */
.work-order-action-buttons {
  grid-template-columns: repeat(5, minmax(74px, 1fr));
  min-width: 430px;
}

.er2b-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, .62);
}

.er2b-modal {
  width: min(760px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, .3);
}

.er2b-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.er2b-modal-head h3 {
  margin: 0;
  font-size: 20px;
}

.integration-settings-card {
  max-width: 980px;
}

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

.integration-panel {
  border: 1px solid #d8e1ec;
  border-radius: 10px;
  padding: 14px;
  background: #f8fafc;
}

.integration-panel h3 {
  margin: 0 0 8px;
}

.integration-note {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #eff6ff;
  color: #1e3a8a;
  font-size: 13px;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .work-order-action-buttons {
    grid-template-columns: repeat(2, minmax(90px, 1fr));
    min-width: 0;
  }

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

/* Work Orders list: fixed shell, internal list scrolling */
body.work-orders-list-active {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

body.work-orders-list-active .layout,
body.work-orders-list-active .main {
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
}

body.work-orders-list-active .sidebar {
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
}

body.work-orders-list-active .content {
  flex: 1 1 auto;
  min-height: 0;
  height: calc(100vh - 42px);
  height: calc(100dvh - 42px);
  overflow: hidden;
  padding: 18px 20px;
}

body.work-orders-list-active #contentArea {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  overflow: hidden;
}

body.work-orders-list-active .page-title {
  margin: 0;
}

body.work-orders-list-active .work-orders-list-card {
  width: 100%;
  max-width: none;
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  overflow: hidden;
}

body.work-orders-list-active .work-orders-list-card > br {
  display: none;
}

body.work-orders-list-active #workOrdersListBox {
  min-height: 0;
  overflow: auto;
  border: 1px solid #d8e1ec;
  border-radius: 8px;
  -webkit-overflow-scrolling: touch;
}

body.work-orders-list-active #workOrdersListBox table {
  min-width: 980px;
  border: 0;
}

body.work-orders-list-active #workOrdersListBox th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #f8fafc;
}

body.work-orders-list-active .footer {
  flex: 0 0 42px;
  margin-top: 0;
}

/* Customers List / Find: fixed shell, internal results scrolling */
body.customers-list-active {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

body.customers-list-active .layout,
body.customers-list-active .main {
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
}

body.customers-list-active .sidebar {
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
}

body.customers-list-active .content {
  flex: 1 1 auto;
  min-height: 0;
  height: calc(100vh - 42px);
  height: calc(100dvh - 42px);
  overflow: hidden;
  padding: 18px 20px;
}

body.customers-list-active #contentArea {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  overflow: hidden;
}

body.customers-list-active .page-title {
  margin: 0;
}

body.customers-list-active .customers-list-card {
  width: 100%;
  max-width: none;
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 10px;
  overflow: hidden;
}

body.customers-list-active .customers-search-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

body.customers-list-active .customers-search-actions .btn {
  margin-top: 0;
  min-height: 38px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.customers-list-active #customerResults {
  min-height: 0;
  overflow: auto;
  margin-top: 0 !important;
  border: 1px solid #d8e1ec;
  border-radius: 8px;
  -webkit-overflow-scrolling: touch;
}

body.customers-list-active #customerResults table {
  min-width: 980px;
  border: 0;
}

body.customers-list-active #customerResults th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #f8fafc;
}

body.customers-list-active .footer {
  flex: 0 0 42px;
  margin-top: 0;
}

/* Customer / Vehicle add-edit: 100% shell with internal profile and vehicle scrolling */
body.customer-form-active {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

body.customer-form-active .layout,
body.customer-form-active .main {
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
}

body.customer-form-active .sidebar {
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
}

body.customer-form-active .content {
  flex: 1 1 auto;
  min-height: 0;
  height: calc(100vh - 42px);
  height: calc(100dvh - 42px);
  overflow: hidden;
  padding: 12px 16px;
}

body.customer-form-active #contentArea {
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.customer-form-shell {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
  overflow: hidden;
}

.customer-form-shell .page-title {
  margin: 0;
}

.customer-form-card {
  width: 100%;
  max-width: none;
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 10px;
  overflow: hidden;
  border-radius: 8px;
  padding: 12px;
}

.customer-form-scroll {
  min-height: 0;
  overflow: auto;
  padding-right: 4px;
  -webkit-overflow-scrolling: touch;
}

.customer-form-card .form-grid {
  margin-bottom: 8px;
}

.customer-fleet-panel {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(86px, 1fr);
  border: 1px solid #dbeafe;
  background: #eff6ff;
  border-radius: 8px;
  padding: 9px;
  overflow: hidden;
}

.customer-fleet-header {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.customer-fleet-title {
  font-size: 13px;
  font-weight: 800;
  color: #1e3a8a;
}

.customer-fleet-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.customer-fleet-actions .btn {
  margin-top: 0;
}

.customer-fleet-list {
  min-height: 0;
  overflow: auto;
  background: #fff;
  border: 1px solid #d8e1ec;
  border-radius: 8px;
  -webkit-overflow-scrolling: touch;
}

.customer-fleet-list .report-box {
  margin: 0;
  border: 0;
  box-shadow: none;
}

.customer-fleet-table {
  min-width: 860px;
  background: #fff;
  border: 0;
}

.customer-fleet-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #f8fafc;
}

.customer-form-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid #e2e8f0;
  padding-top: 10px;
}

.customer-form-actions .btn {
  margin-top: 0;
}

body.customer-form-active .footer {
  flex: 0 0 42px;
  margin-top: 0;
}

/* Vehicle Inspection: fixed menu shell, right page scroll only */
body.vehicle-inspection-active {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

body.vehicle-inspection-active .layout,
body.vehicle-inspection-active .main {
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
}

body.vehicle-inspection-active .sidebar {
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
}

body.vehicle-inspection-active .content {
  flex: 1 1 auto;
  min-height: 0;
  height: calc(100vh - 42px);
  height: calc(100dvh - 42px);
  overflow: hidden;
  padding: 14px 18px;
}

body.vehicle-inspection-active #contentArea {
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.vehicle-inspection-shell {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
  overflow: hidden;
}

.vehicle-inspection-shell .page-title {
  margin: 0;
}

body.vehicle-inspection-active .vi-shell {
  width: 100%;
  max-width: none;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  padding: 12px;
}

.vehicle-inspection-scroll {
  height: 100%;
  min-height: 0;
  overflow: auto;
  padding-right: 4px;
  -webkit-overflow-scrolling: touch;
}

body.vehicle-inspection-active .footer {
  flex: 0 0 42px;
  margin-top: 0;
}

/* Add Estimate / Work Order: fixed shell, right-side page scrolling */
body.work-order-form-active {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

body.work-order-form-active .layout,
body.work-order-form-active .main {
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
}

body.work-order-form-active .sidebar {
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
}

body.work-order-form-active .content {
  flex: 1 1 auto;
  min-height: 0;
  height: calc(100vh - 42px);
  height: calc(100dvh - 42px);
  overflow: hidden;
  padding: 18px 20px;
}

body.work-order-form-active #contentArea {
  height: 100%;
  min-height: 0;
  overflow: auto;
  padding-right: 4px;
  -webkit-overflow-scrolling: touch;
}

body.work-order-form-active .page-title {
  margin-top: 0;
}

body.work-order-form-active .work-order-form-card {
  width: 100%;
  max-width: none;
  margin-bottom: 16px;
}

body.work-order-form-active .footer {
  flex: 0 0 42px;
  margin-top: 0;
}

/* Finance reports: fixed shell, full-width report and internal table scrolling */
body.finance-reports-active {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

body.finance-reports-active .layout,
body.finance-reports-active .main {
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
}

body.finance-reports-active .sidebar {
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
}

body.finance-reports-active .content {
  flex: 1 1 auto;
  min-height: 0;
  height: calc(100vh - 42px);
  height: calc(100dvh - 42px);
  overflow: hidden;
  padding: 18px 20px;
}

body.finance-reports-active #contentArea {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  overflow: hidden;
}

body.finance-reports-active .page-title {
  margin: 0;
}

body.finance-reports-active .finance-report-card {
  width: 100%;
  max-width: none;
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr);
  gap: 12px;
  overflow: hidden;
}

body.finance-reports-active .finance-report-card > br {
  display: none;
}

body.finance-reports-active .finance-toolbar,
body.finance-reports-active .finance-filter-panel,
body.finance-reports-active #financeSummary {
  margin: 0;
}

body.finance-reports-active #financeList {
  min-height: 0;
  overflow: auto;
  border: 1px solid #d8e1ec;
  border-radius: 8px;
  -webkit-overflow-scrolling: touch;
}

body.finance-reports-active #financeList .finance-table-wrap {
  min-height: 100%;
  overflow: visible;
  border: 0;
  border-radius: 0;
}

body.finance-reports-active .finance-table {
  min-width: 1050px;
}

body.finance-reports-active .finance-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #f8fafc;
}

body.finance-reports-active .footer {
  flex: 0 0 42px;
  margin-top: 0;
}

.lang-toggle {
  width: 100%;
  margin-top: 4px;
  min-height: 28px;
  padding: 5px 8px;
  border: 1px solid rgba(148, 163, 184, .45);
  border-radius: 7px;
  background: rgba(15, 23, 42, .06);
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.lang-toggle:hover {
  background: rgba(15, 23, 42, .11);
}

/* Mobile drawer shell for 6-7 inch Android/iOS screens */
.mobile-topbar,
.mobile-menu-overlay {
  display: none;
}

@media (max-width: 900px) {
  html,
  body {
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  body {
    padding: 0;
  }

  body.er2b-logged-in:not(.mobile-menu-open),
  body.work-orders-list-active,
  body.customers-list-active,
  body.customer-form-active,
  body.vehicle-inspection-active,
  body.work-order-form-active,
  body.finance-reports-active,
  body.employers-active {
    height: auto !important;
    min-height: var(--app-vh, 100vh) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  body.mobile-menu-open {
    overflow: hidden !important;
  }

  .mobile-topbar {
    position: sticky;
    top: 0;
    z-index: 80;
    display: none;
    align-items: center;
    gap: 10px;
    min-height: calc(50px + env(safe-area-inset-top));
    padding: calc(7px + env(safe-area-inset-top)) 10px 7px;
    background: #0f172a;
    color: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .22);
  }

  body.er2b-logged-in .mobile-topbar {
    display: flex;
  }

  .mobile-menu-button {
    min-width: 92px;
    min-height: 44px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 8px;
    background: #1e293b;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    touch-action: manipulation;
  }

  .mobile-topbar-title {
    min-width: 0;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(15, 23, 42, .48);
  }

  body.mobile-menu-open .mobile-menu-overlay {
    display: block;
  }

  .layout {
    display: block !important;
    min-height: calc(var(--app-vh, 100vh) - 50px);
  }

  .sidebar,
  body.work-orders-list-active .sidebar,
  body.customers-list-active .sidebar,
  body.customer-form-active .sidebar,
  body.vehicle-inspection-active .sidebar,
  body.work-order-form-active .sidebar,
  body.finance-reports-active .sidebar,
  body.employers-active .sidebar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 90 !important;
    width: min(86vw, 320px) !important;
    height: var(--app-vh, 100vh) !important;
    max-height: none !important;
    padding: calc(12px + env(safe-area-inset-top)) 12px calc(14px + env(safe-area-inset-bottom)) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    transform: translateX(-105%);
    transition: transform .22s ease;
    box-shadow: 16px 0 40px rgba(15, 23, 42, .34);
  }

  body.mobile-menu-open .sidebar {
    transform: translateX(0);
  }

  .sidebar .logo-box {
    display: block;
    padding: 7px !important;
    margin-bottom: 8px !important;
  }

  .sidebar .logo-box img {
    width: 82px !important;
    border-radius: 8px !important;
  }

  .sidebar .info-card {
    display: block;
    font-size: 11px;
    padding: 8px;
    margin-bottom: 8px;
  }

  .sidebar .user-card {
    font-size: 12px;
    padding: 8px;
    margin-bottom: 8px;
  }

  .menu {
    display: block !important;
    overflow: visible !important;
    padding-bottom: 0 !important;
  }

  .menu button,
  .submenu button {
    width: 100% !important;
    flex: none !important;
    min-height: 44px !important;
    margin: 0 0 7px 0 !important;
    padding: 10px 11px !important;
    text-align: left !important;
    justify-content: flex-start !important;
    font-size: 14px !important;
    line-height: 1.18 !important;
  }

  .submenu,
  .submenu.is-open,
  .submenu[style*="block"] {
    display: none;
    padding-left: 10px !important;
    margin: 0 0 4px 0;
  }

  .submenu.is-open,
  .submenu[style*="block"] {
    display: block !important;
  }

  .logout,
  .lang-toggle {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .main,
  body.work-orders-list-active .main,
  body.customers-list-active .main,
  body.customer-form-active .main,
  body.vehicle-inspection-active .main,
  body.work-order-form-active .main,
  body.finance-reports-active .main,
  body.employers-active .main {
    min-height: calc(var(--app-vh, 100vh) - 50px) !important;
    height: auto !important;
    overflow: visible !important;
  }

  .content,
  body.work-orders-list-active .content,
  body.customers-list-active .content,
  body.customer-form-active .content,
  body.vehicle-inspection-active .content,
  body.work-order-form-active .content,
  body.finance-reports-active .content,
  body.employers-active .content {
    height: auto !important;
    min-height: calc(var(--app-vh, 100vh) - 92px) !important;
    overflow: visible !important;
    padding: 12px !important;
  }

  #contentArea,
  body.work-orders-list-active #contentArea,
  body.customers-list-active #contentArea,
  body.customer-form-active #contentArea,
  body.vehicle-inspection-active #contentArea,
  body.work-order-form-active #contentArea,
  body.finance-reports-active #contentArea,
  body.employers-active #contentArea {
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    overflow: visible !important;
  }

  .card,
  .card-wide,
  .work-orders-list-card,
  .customers-list-card,
  .customer-form-card,
  body.vehicle-inspection-active .vi-shell,
  .work-order-form-card,
  .finance-report-card {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    overflow: visible !important;
  }

  body.customers-list-active .customers-search-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  body.customers-list-active .customers-search-actions .btn {
    width: 100% !important;
    min-height: 44px !important;
  }

  #workOrdersListBox,
  #customerResults,
  #financeList,
  .finance-table-wrap {
    max-height: none !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
  }
}

@media (min-width: 360px) and (max-width: 430px) {
  .page-title {
    font-size: 20px !important;
    line-height: 1.18 !important;
  }

  .content {
    padding: 10px !important;
  }

  .form-grid,
  .finance-form-grid,
  .finance-main-grid,
  .finance-date-grid,
  .finance-filter-grid,
  .finance-summary-grid {
    grid-template-columns: 1fr !important;
  }

  input,
  select,
  textarea,
  button,
  .btn {
    font-size: 16px !important;
  }

  .btn,
  button {
    min-height: 44px;
  }
}

/* Mobile: Work Order add/edit must scroll all fields on 6-7 inch phones */
@media (max-width: 900px) {
  body.work-order-form-active {
    height: auto !important;
    min-height: var(--app-vh, 100vh) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  body.work-order-form-active .layout {
    height: auto !important;
    min-height: calc(var(--app-vh, 100vh) - 50px) !important;
    overflow: visible !important;
  }

  body.work-order-form-active .main,
  body.work-order-form-active .content,
  body.work-order-form-active #contentArea {
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  body.work-order-form-active .content {
    padding: 10px 10px calc(90px + env(safe-area-inset-bottom)) !important;
  }

  body.work-order-form-active .work-order-form-card,
  body.work-order-form-active .wo-compact,
  body.work-order-form-active .wo-panel {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  body.work-order-form-active .wo-panel {
    padding: 11px !important;
    margin-bottom: 10px !important;
  }

  body.work-order-form-active .wo-compact .form-grid,
  body.work-order-form-active .wo-line-grid,
  body.work-order-form-active .wo-text-grid,
  body.work-order-form-active .wo-totals-layout,
  body.work-order-form-active .wo-totals-layout .form-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  body.work-order-form-active .wo-actions,
  body.work-order-form-active .wo-line-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  body.work-order-form-active .wo-actions .btn,
  body.work-order-form-active .wo-line-actions .btn,
  body.work-order-form-active .btn {
    width: 100% !important;
    min-height: 44px !important;
  }

  body.work-order-form-active .wo-items-table-wrap {
    max-height: none !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
  }

  body.work-order-form-active .wo-items-table {
    min-width: 780px !important;
  }

  body.work-order-form-active input,
  body.work-order-form-active select,
  body.work-order-form-active textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 44px !important;
    font-size: 16px !important;
  }

  body.work-order-form-active textarea {
    min-height: 86px !important;
  }
}

/* Mobile: Finance and Employers must load full page and scroll to bottom */
@media (max-width: 900px) {
  body.finance-reports-active,
  body.employers-active {
    height: auto !important;
    min-height: var(--app-vh, 100vh) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  body.finance-reports-active .layout,
  body.employers-active .layout {
    height: auto !important;
    min-height: calc(var(--app-vh, 100vh) - 50px) !important;
    overflow: visible !important;
  }

  body.finance-reports-active .main,
  body.finance-reports-active .content,
  body.finance-reports-active #contentArea,
  body.employers-active .main,
  body.employers-active .content,
  body.employers-active #contentArea {
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    display: block !important;
    overflow: visible !important;
  }

  body.finance-reports-active .content,
  body.employers-active .content {
    padding: 10px 10px calc(90px + env(safe-area-inset-bottom)) !important;
  }

  .finance-card,
  .finance-report-card,
  .employers-fit,
  .employers-grid,
  .employers-profile-card,
  .employers-list-card,
  .employers-fit .card {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    display: block !important;
    overflow: visible !important;
  }

  .finance-toolbar,
  .finance-filter-panel,
  .finance-filter-grid,
  .finance-date-grid,
  .finance-summary-grid,
  .finance-form-grid,
  .finance-main-grid,
  .finance-notes-grid,
  .finance-purchase-grid,
  .employers-form-grid,
  .employers-search-row,
  .employers-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .finance-toolbar .btn,
  .finance-periods .btn,
  .employers-actions .btn,
  .employers-search-row .btn {
    width: 100% !important;
    min-height: 44px !important;
  }

  .finance-filter-panel,
  .finance-panel,
  .finance-purchase-box,
  .employers-fit .card {
    padding: 11px !important;
    margin-bottom: 10px !important;
  }

  #financeList,
  #financeList .finance-table-wrap,
  .employers-fit #employersList {
    max-height: none !important;
    min-height: 0 !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
  }

  #financeList .finance-table,
  .employers-fit #employersList table {
    min-width: 780px !important;
  }

  .finance-summary-item {
    padding: 10px !important;
  }

  .finance-summary-value {
    font-size: 16px !important;
  }

  .employers-fit input,
  .employers-fit select,
  .employers-fit textarea,
  .finance-card input,
  .finance-card select,
  .finance-card textarea,
  .finance-report-card input,
  .finance-report-card select,
  .finance-report-card textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 44px !important;
    font-size: 16px !important;
  }

  .employers-fit textarea,
  .finance-card textarea {
    min-height: 86px !important;
    resize: vertical !important;
  }
}

/* Mobile: Customers list must scroll to the real last row */
@media (max-width: 900px) {
  body.customers-list-active {
    height: auto !important;
    min-height: var(--app-vh, 100vh) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  body.customers-list-active .layout,
  body.customers-list-active .main,
  body.customers-list-active .content,
  body.customers-list-active #contentArea,
  body.customers-list-active .customers-list-card {
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    display: block !important;
    overflow: visible !important;
  }

  body.customers-list-active .content {
    padding: 10px 10px calc(96px + env(safe-area-inset-bottom)) !important;
  }

  body.customers-list-active .customers-list-card {
    padding: 11px !important;
  }

  body.customers-list-active .input-group {
    display: block !important;
  }

  body.customers-list-active input,
  body.customers-list-active button,
  body.customers-list-active .btn {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 44px !important;
    font-size: 16px !important;
  }

  body.customers-list-active #customerResults {
    max-height: none !important;
    min-height: 0 !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    padding-bottom: calc(18px + env(safe-area-inset-bottom)) !important;
    -webkit-overflow-scrolling: touch;
  }

  body.customers-list-active #customerResults .report-box {
    min-width: 780px;
  }

  body.customers-list-active #customerResults table {
    min-width: 780px !important;
  }
}

/* Mobile: Customer / Vehicle profile scrolls the form, never the drawer menu */
@media (max-width: 900px) {
  body.customer-form-active {
    height: auto !important;
    min-height: var(--app-vh, 100vh) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  body.customer-form-active .layout,
  body.customer-form-active .main,
  body.customer-form-active .content,
  body.customer-form-active #contentArea,
  body.customer-form-active .customer-form-shell,
  body.customer-form-active .customer-form-card,
  body.customer-form-active .customer-form-scroll {
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  body.customer-form-active .content {
    padding: 10px 10px calc(90px + env(safe-area-inset-bottom)) !important;
  }

  body.customer-form-active .customer-form-card {
    display: block !important;
    padding: 11px !important;
  }

  body.customer-form-active .form-grid,
  body.customer-form-active .customer-form-card .form-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  body.customer-form-active .customer-fleet-panel {
    display: block !important;
    max-height: none !important;
    overflow: visible !important;
  }

  body.customer-form-active .customer-fleet-header,
  body.customer-form-active .customer-fleet-actions,
  body.customer-form-active .customer-form-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  body.customer-form-active .customer-fleet-list {
    max-height: none !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
  }

  body.customer-form-active .customer-fleet-table {
    min-width: 780px !important;
  }

  body.customer-form-active .btn,
  body.customer-form-active button,
  body.customer-form-active input,
  body.customer-form-active select,
  body.customer-form-active textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 44px !important;
    font-size: 16px !important;
  }

  body.customer-form-active textarea {
    min-height: 86px !important;
  }
}

/* Mobile: Vehicle Inspection keeps drawer isolated and page fields scroll normally */
@media (max-width: 900px) {
  body.vehicle-inspection-active {
    height: auto !important;
    min-height: var(--app-vh, 100vh) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  body.vehicle-inspection-active .layout,
  body.vehicle-inspection-active .main,
  body.vehicle-inspection-active .content,
  body.vehicle-inspection-active #contentArea,
  body.vehicle-inspection-active .vehicle-inspection-shell,
  body.vehicle-inspection-active .vi-shell,
  body.vehicle-inspection-active .vehicle-inspection-scroll {
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  body.vehicle-inspection-active .content {
    padding: 10px 10px calc(90px + env(safe-area-inset-bottom)) !important;
  }

  body.vehicle-inspection-active .vi-shell {
    display: block !important;
    padding: 11px !important;
  }
}

.settings-card {
  max-width: 1120px;
}

.settings-license-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid #e2e8f0;
}

.settings-license-head h2 {
  margin: 4px 0 6px;
  color: #0f172a;
}

.settings-license-head p {
  margin: 0;
  color: #475569;
}

.settings-kicker {
  color: #166534;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.settings-status {
  padding: 8px 12px;
  border-radius: 8px;
  background: #dcfce7;
  color: #166534;
  font-weight: 900;
  border: 1px solid #86efac;
}

.settings-license-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.settings-license-item {
  border: 1px solid #d8e1ec;
  border-radius: 8px;
  background: #f8fafc;
  padding: 12px;
  min-height: 72px;
}

.settings-license-item span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
}

.settings-license-item strong {
  display: block;
  color: #0f172a;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.settings-note {
  margin-top: 14px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: #1e3a8a;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .settings-license-head,
  .settings-license-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
}
