:root {
  --black: #050505;
  --carbon: #121923;
  --ink: #17202c;
  --muted: #667085;
  --line: #dbe2ea;
  --yellow: #f5c400;
  --yellow-soft: #fff4ba;
  --red: #ef4444;
  --blue: #38bdf8;
  --green: #22c55e;
  --purple: #a78bfa;
  --orange: #f97316;
  --teal: #14b8a6;
  --surface: #ffffff;
  --shadow: 0 18px 55px rgba(15, 23, 42, 0.14);
  --theme-accent: #f5c400;
  --theme-bg: #f8fafc;
  --text-color: #17202c;
  --font-scale: 1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-color);
  background:
    radial-gradient(circle at 18% 8%, rgba(245, 196, 0, 0.26), transparent 28rem),
    radial-gradient(circle at 90% 18%, rgba(56, 189, 248, 0.16), transparent 24rem),
    linear-gradient(135deg, #f8fafc, #eef2f7 46%, #fff8df);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: calc(15px * var(--font-scale));
}

body[data-theme="light"] {
  --theme-accent: #2563eb;
  --theme-bg: #f8fafc;
  --yellow: #2563eb;
  background: linear-gradient(135deg, #f8fafc, #e0f2fe);
}

body[data-theme="dark"] {
  --theme-accent: #f5c400;
  --surface: #101827;
  --ink: #f8fafc;
  --muted: #b7c1cf;
  --line: #253044;
  background: linear-gradient(135deg, #020617, #111827);
}

body[data-theme="ocean"] {
  --theme-accent: #38bdf8;
  --yellow: #38bdf8;
  background: linear-gradient(135deg, #eff6ff, #dff7ff);
}

body[data-theme="emerald"] {
  --theme-accent: #22c55e;
  --yellow: #22c55e;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

body[data-theme="rose"] {
  --theme-accent: #fb7185;
  --yellow: #fb7185;
  background: linear-gradient(135deg, #fff1f2, #ffe4e6);
}

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

button {
  border: 0;
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 9px 11px;
}

textarea {
  min-height: 94px;
  resize: vertical;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.88), rgba(18, 25, 35, 0.78)),
    url("assets/login-shelby-bg.png") center / cover no-repeat;
}

.login-card {
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(245, 196, 0, 0.52);
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.login-brand {
  padding: 42px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(5, 5, 5, 0.96), rgba(18, 25, 35, 0.94)),
    linear-gradient(90deg, rgba(245, 196, 0, 0.20), transparent);
  border-right: 6px solid var(--yellow);
}

.login-brand img {
  width: min(360px, 100%);
  filter: drop-shadow(0 18px 30px rgba(245, 196, 0, 0.18));
}

.login-brand h1 {
  margin: 40px 0 10px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.92;
  letter-spacing: 0;
}

.login-brand p {
  max-width: 540px;
  color: #d5dce7;
  line-height: 1.7;
}

.company-line {
  margin-top: 36px;
  display: grid;
  gap: 5px;
  color: #c7d0dd;
}

.company-line strong {
  color: var(--yellow);
}

.login-form {
  padding: 42px;
  display: grid;
  align-content: center;
  gap: 16px;
  background: linear-gradient(180deg, #ffffff, #fff9df);
}

.login-form h2 {
  margin: 0;
  font-size: 28px;
}

.login-form p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

code {
  border-radius: 6px;
  padding: 4px 6px;
  background: #111827;
  color: var(--yellow);
  font-weight: 900;
}

.shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 290px 1fr;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: auto;
  padding: 22px 16px;
  color: #fff;
  background: linear-gradient(180deg, #030303 0%, #121923 62%, #050505 100%);
  border-right: 6px solid var(--yellow);
}

.logo {
  width: 230px;
  max-width: 100%;
  display: block;
  margin-bottom: 16px;
}

.company {
  display: grid;
  gap: 5px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(245, 196, 0, 0.34);
  font-size: 12px;
  line-height: 1.4;
}

.company strong {
  color: var(--yellow);
}

.company span {
  color: #c4ccd8;
}

.user-chip {
  margin: 16px 0;
  display: grid;
  gap: 6px;
  padding: 13px;
  border: 1px solid rgba(245, 196, 0, 0.32);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(245, 196, 0, 0.20), rgba(255, 255, 255, 0.06));
}

.user-chip span {
  color: #d9e1eb;
}

nav {
  display: grid;
  gap: 8px;
}

nav button {
  min-height: 58px;
  padding: 0 18px;
  border-radius: 12px;
  color: #e7edf5;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 5px 0 0 var(--yellow);
  text-align: left;
  font-weight: 900;
  font-size: 15px;
}

nav button span {
  display: block;
}

nav button:nth-child(2) { box-shadow: inset 5px 0 0 var(--blue); }
nav button:nth-child(3) { box-shadow: inset 5px 0 0 var(--red); }
nav button:nth-child(4) { box-shadow: inset 5px 0 0 var(--green); }
nav button:nth-child(5) { box-shadow: inset 5px 0 0 var(--purple); }
nav button:nth-child(6) { box-shadow: inset 5px 0 0 var(--orange); }
nav button:nth-child(7) { box-shadow: inset 5px 0 0 var(--teal); }

nav button:hover,
nav button.active {
  color: #080808;
  background: linear-gradient(135deg, var(--yellow), #fff1a3);
  box-shadow: 0 12px 24px rgba(245, 196, 0, 0.24);
}

.main {
  min-width: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 80px;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.topbar strong {
  font-size: 22px;
}

.topbar p {
  margin: 5px 0 0;
  color: var(--muted);
}

.top-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.content {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.hero,
.section-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 223, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(245, 196, 0, 0.22), transparent 24rem);
  box-shadow: var(--shadow);
}

.hero h2,
.section-title h2 {
  margin: 0;
  font-size: 28px;
}

.hero p,
.section-title p {
  margin: 6px 0 0;
  color: var(--muted);
}

.hero span,
.pill {
  border-radius: 999px;
  padding: 8px 12px;
  color: #111;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 12px;
}

.date-filter {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
}

.stat,
.panel,
.team-card {
  border: 1px solid rgba(23, 32, 44, 0.08);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.stat {
  padding: 14px;
  border-top: 5px solid var(--yellow);
  background: linear-gradient(135deg, #fff, #fff8d8);
}

.stat span {
  color: var(--muted);
  font-weight: 900;
}

.stat strong {
  display: block;
  margin-top: 7px;
  font-size: 28px;
}

.grid {
  display: grid;
  gap: 14px;
}

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

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

.panel {
  padding: 14px;
}

.panel h3 {
  margin: 0 0 12px;
}

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

.record {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fbfdff;
}

.record p {
  margin: 5px 0;
  color: var(--muted);
}

.record small {
  color: #758195;
}

.record-actions {
  display: flex;
  align-items: center;
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 0 16px;
  color: #111;
  background: #eef2f7;
  font-weight: 900;
}

.btn.primary {
  background: var(--yellow);
  box-shadow: 0 10px 22px rgba(245, 196, 0, 0.25);
}

.btn.light {
  background: #f1f5f9;
}

.btn.small {
  min-height: 34px;
  padding: 0 10px;
  font-size: 12px;
}

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

.fold {
  border: 1px solid rgba(23, 32, 44, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.fold summary {
  cursor: pointer;
  padding: 15px 18px;
  color: #101827;
  background: linear-gradient(135deg, var(--yellow), #fff4ba);
  font-weight: 900;
}

.fold .panel {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.info-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(135deg, #fff, #f8fafc);
}

.info-card span {
  color: var(--muted);
  font-weight: 900;
}

.info-card strong {
  color: var(--ink);
}

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

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.team-card {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.team-card.suspended {
  opacity: 0.58;
  filter: grayscale(0.4);
}

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

.btn.danger {
  color: #fff;
  background: #dc2626;
}

.team-card img,
.mini-avatar {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--yellow);
  font-size: 24px;
  font-weight: 900;
}

.team-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  color: #111;
  background: var(--yellow-soft);
  font-size: 12px;
  font-weight: 900;
}

.team-card p,
.team-card small,
.empty,
.audit-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.compact-search {
  grid-template-columns: minmax(180px, 360px) auto auto;
  align-items: center;
  box-shadow: none;
}

.compact-search input,
.compact-search .btn {
  min-height: 32px;
  font-size: 12px;
}

.profile-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 14px;
  align-items: start;
}

.profile-card {
  text-align: center;
  display: grid;
  gap: 12px;
  justify-items: center;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.95), rgba(5, 5, 5, 0.96)),
    radial-gradient(circle at top, rgba(245, 196, 0, 0.24), transparent 16rem);
  color: #fff;
}

.profile-card h3,
.profile-card p {
  margin: 0;
}

.profile-card div:not(.profile-photo) {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.profile-card div span {
  color: #d7dee9;
}

.profile-photo {
  width: 132px;
  height: 132px;
  border: 4px solid var(--yellow);
  border-radius: 28px;
  object-fit: cover;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.empty-photo {
  color: #111;
  background: var(--yellow);
  font-size: 60px;
  font-weight: 900;
}

.popover {
  position: fixed;
  right: 24px;
  top: 88px;
  z-index: 50;
  width: min(440px, calc(100vw - 36px));
  max-height: calc(100vh - 110px);
  overflow: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.popover h3 {
  margin: 0 0 12px;
}

.hidden {
  display: none !important;
}

.icon-btn {
  min-width: 44px;
  min-height: 44px;
  border-radius: 14px;
  padding: 0 12px;
  color: #111;
  background: #eef2f7;
  font-size: 18px;
  font-weight: 900;
}

.settings-btn {
  background: linear-gradient(135deg, #111827, #334155);
  color: #fff;
}

.profile-btn {
  background: linear-gradient(135deg, #38bdf8, #dff7ff);
}

.notify-btn {
  background: linear-gradient(135deg, var(--yellow), #fff3a3);
}

.settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.settings-version {
  margin: 12px 0;
  color: var(--muted);
  font-weight: 900;
}

.profile-settings-btn {
  width: 100%;
  margin-bottom: 12px;
}

.conditional-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  background: #fffdf0;
}

.lead-form .btn {
  align-self: end;
}

.compact-entry-form label,
.form-grid label {
  font-size: 12px;
}

.compact-entry-form input,
.compact-entry-form select,
.compact-entry-form textarea,
.form-grid input,
.form-grid select,
.form-grid textarea {
  min-height: 32px;
  font-size: 12px;
}

.compact-entry-form textarea,
.form-grid textarea {
  min-height: 42px;
  resize: vertical;
}

.reset-login-btn {
  justify-self: end;
}

.compact-filter {
  grid-template-columns: repeat(2, minmax(0, 160px)) auto;
  box-shadow: none;
  margin-bottom: 10px;
}

.compact-filter input,
.compact-filter select,
.compact-filter .btn {
  min-height: 32px;
  font-size: 12px;
}

.lead-card {
  align-items: start;
}

.record-actions.wrap {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: 190px;
}

.mini-reassign {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) auto;
  gap: 6px;
  width: 100%;
}

.mini-reassign select {
  min-height: 34px;
  font-size: 12px;
}

.parts-invoice {
  margin-top: 10px;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  background: #f8fafc;
}

.parts-line {
  display: grid;
  grid-template-columns: 1fr 90px 150px;
  gap: 8px;
  margin-top: 8px;
}

.parts-line input,
.parts-line select {
  min-height: 34px;
  font-size: 12px;
}

.customer-service-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.customer-service-form input,
.customer-service-form select {
  min-height: 34px;
  font-size: 12px;
}

.history-card {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.history-card p,
.history-card small {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.mini-media {
  margin-top: 8px;
  max-width: 620px;
}

.detail-drawer {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fafc;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  color: #111;
  background: var(--yellow-soft);
  font-size: 12px;
  font-weight: 900;
}

.mini-media summary {
  cursor: pointer;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: #eef2f7;
  font-size: 12px;
  font-weight: 900;
}

.status-strip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 6px 8px;
  border-radius: 999px;
  background: #101828;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.status-strip select {
  min-height: 28px;
  border: 0;
  border-radius: 999px;
  padding: 0 8px;
  background: var(--yellow);
  color: #111;
  font-size: 12px;
  font-weight: 900;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.media-thumb {
  display: grid;
  gap: 6px;
  color: var(--ink);
  text-decoration: none;
}

.media-thumb img,
.media-thumb video,
.media-thumb span {
  width: 100%;
  aspect-ratio: 1.3;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  object-fit: cover;
}

.estimate-line,
.advisor-ready-form {
  display: grid;
  grid-template-columns: 1.4fr 70px 110px 110px auto;
  gap: 8px;
  align-items: end;
  margin-top: 8px;
}

.advisor-ready-form {
  grid-template-columns: repeat(3, minmax(110px, 1fr));
}

.parts-reply-form {
  display: grid;
  gap: 8px;
  width: min(100%, 760px);
}

.estimate-line input,
.advisor-ready-form input,
.advisor-ready-form select,
.parts-reply-form input,
.parts-reply-form select {
  min-height: 34px;
  font-size: 12px;
}

.media-thumb span {
  display: grid;
  place-items: center;
  font-weight: 900;
}

.media-thumb small {
  font-size: 11px;
  font-weight: 800;
}

.fold > summary {
  list-style-position: inside;
}

.fold > summary::marker {
  font-size: 13px;
}

.top-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(23, 32, 44, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.top-tabs button {
  min-height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--ink);
  background: #eef2f7;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 900;
}

.top-tabs button.active,
.top-tabs button:hover {
  color: #111;
  background: linear-gradient(135deg, var(--yellow), #fff4ba);
  border-color: rgba(245, 196, 0, 0.5);
  box-shadow: 0 8px 18px rgba(245, 196, 0, 0.22);
}

.tab-page {
  display: grid;
  gap: 12px;
}

.notification-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.notification-list p {
  margin: 0;
  padding: 10px;
  border-radius: 8px;
  background: #fff8db;
}

.live-notification {
  position: fixed;
  top: 96px;
  right: 18px;
  z-index: 80;
  width: min(360px, calc(100vw - 36px));
  padding: 14px;
  border-radius: 12px;
  color: #111;
  background: linear-gradient(135deg, var(--yellow), #fff4ba);
  box-shadow: var(--shadow);
  font-weight: 900;
}

.blink {
  animation: shelbyBlink 1s ease-in-out infinite;
}

@keyframes shelbyBlink {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(245, 196, 0, 0.0), var(--shadow);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(245, 196, 0, 0.24), var(--shadow);
    transform: translateY(-1px);
  }
}

.user-chip img,
.avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--yellow);
  font-size: 24px;
  font-weight: 900;
}

.policy ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.alert,
.toast {
  border-radius: 8px;
  padding: 11px 13px;
  font-weight: 800;
}

.count-badge {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  margin-left: 6px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.remember-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: auto;
  font-size: 13px;
  font-weight: 800;
}

.remember-row input {
  width: auto;
  min-height: auto;
}

.alert.danger,
.toast.danger {
  color: #991b1b;
  background: #fee2e2;
}

.toast {
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 100;
  color: #14532d;
  background: #dcfce7;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .login-card,
  .shell,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    height: auto;
  }

  .stats,
  .team-grid,
  .form-grid,
  .date-filter,
  .profile-layout,
  .customer-service-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .stats,
  .team-grid,
  .form-grid,
  .search,
  .date-filter,
  .settings-grid,
  .profile-layout,
  .conditional-grid,
  .parts-line,
  .customer-service-form,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .topbar,
  .hero,
  .section-title,
  .record {
    flex-direction: column;
  }

  .top-actions,
  .record-actions.wrap {
    width: 100%;
    justify-content: flex-start;
  }

  .top-tabs button,
  .btn.small,
  .compact-filter input,
  .compact-filter select,
  .compact-filter .btn,
  .estimate-line input,
  .advisor-ready-form input,
  .advisor-ready-form select {
    min-height: 30px;
    font-size: 11px;
  }

  .estimate-line,
  .advisor-ready-form {
    grid-template-columns: 1fr;
  }

  .login-brand,
  .login-form {
    padding: 26px;
  }
}
