*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
button, a, input, select, textarea { touch-action: manipulation; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #E5E5EA;
  min-height: 100vh;
}

/* ── Page wrapper ─────────────────────────────────────────────────────────── */

.page-bg {
  background: #E5E5EA;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 0 100px;
}

/* ── Phone shell ──────────────────────────────────────────────────────────── */

.phone-shell {
  position: relative;
  width: 430px;
  height: 852px;
  border: 8px solid #111827;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 25px 50px -12px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  background: #EEF2F3;
}

/* ── Mobile: fill the real screen, hide the shell frame ──────────────────── */

@media (max-width: 500px) {
  .page-bg {
    background: #ffffff;
    min-height: 100dvh;
    padding: 0;
    align-items: stretch;
  }
  .phone-shell {
    width: 100%;
    height: 100dvh;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
}

/* ── Main content area ────────────────────────────────────────────────────── */

#app {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

#app::-webkit-scrollbar { width: 0; }

/* ── Tab bar ──────────────────────────────────────────────────────────────── */

.tab-bar {
  flex-shrink: 0;
  background: #fff;
  border-top: 0.5px solid #D8D8DC;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  padding: 8px 0 20px;
  -webkit-tap-highlight-color: transparent;
}

.tab-bar.hidden { display: none; }

.tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.tab-icon-wrap {
  width: 100%;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.tab-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  user-select: none;
  pointer-events: none;
  filter: grayscale(1) opacity(0.5);
  transition: filter 0.15s;
}

.tab-item.active .tab-icon { filter: none; }

.tab-label {
  font-size: 10px;
  line-height: 12px;
  color: #AEAEB2;
  font-weight: 400;
  text-align: center;
  width: 100%;
  transition: color 0.15s;
}

.tab-item.active .tab-label { color: #1B4332; font-weight: 700; }

/* ── Login / Register ─────────────────────────────────────────────────────── */

.login-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 64px 24px 32px;
  min-height: 0;
  overflow-y: auto;
}

.login-title {
  font-size: 28px;
  font-weight: 700;
  color: #1C1C1E;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.login-subtitle {
  font-size: 15px;
  color: #8E8E93;
  margin-bottom: 32px;
  line-height: 1.4;
}

.form-block { display: flex; flex-direction: column; gap: 16px; }

.form-field { display: flex; flex-direction: column; }

.form-label {
  font-size: 13px;
  color: #3C3C43;
  margin-bottom: 6px;
  font-weight: 400;
}

.form-input {
  width: 100%;
  border: 1px solid #E5E5EA;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 16px;
  color: #000;
  background: #fff;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
  appearance: none;
}

.form-input:focus { border-color: #BE1E2D; }
.form-input.green-focus:focus { border-color: #00A650; }

.btn-red {
  width: 100%;
  padding: 16px;
  border-radius: 50px;
  background: #BE1E2D;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  font-family: inherit;
  transition: opacity 0.15s;
}
.btn-red:active { opacity: 0.8; }

.login-footer {
  font-size: 14px;
  color: #8E8E93;
  text-align: center;
  margin-top: 24px;
}

.btn-link {
  background: none;
  border: none;
  color: #BE1E2D;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
}

.err-msg {
  color: #BE1E2D;
  font-size: 13px;
  padding: 8px 0 0;
}

/* ── PIN page ─────────────────────────────────────────────────────────────── */

.pin-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  overflow-y: auto;
}

.pin-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 110px;
}

.pin-lock { width: 140px; height: auto; margin-bottom: 28px; }

.pin-title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 28px;
  padding: 0 16px;
}

.pin-dots {
  display: flex;
  gap: 20px;
}

.pin-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #999;
  background: transparent;
  transition: background-color 0.1s, border-color 0.1s;
}

.pin-dot.filled {
  background: #000;
  border-color: #000;
}

@keyframes shake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
}

.pin-dots.shake { animation: shake 0.4s ease; }

.pin-spacer { height: 40px; }

.pin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  padding-bottom: 32px;
}

.pin-key {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

.pin-key span {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  line-height: 1;
  transition: opacity 0.15s;
}

.pin-key:active span, .pin-key:active svg { opacity: 0.4; }

.pin-forgot { font-size: 15px; color: #8E8E93; font-weight: 400; font-family: 'Inter', sans-serif; }

/* ── Scrollable page ──────────────────────────────────────────────────────── */

.scroll-page {
  flex: 1;
  overflow-y: auto;
  background: #EEF2F3;
  padding-bottom: 20px;
}

.scroll-page::-webkit-scrollbar { width: 0; }

.px5 { padding-left: 20px; padding-right: 20px; }
.px4 { padding-left: 16px; padding-right: 16px; }
.pt12 { padding-top: 48px; }
.pb5  { padding-bottom: 20px; }

.page-title {
  font-size: 34px;
  font-weight: 700;
  color: #1C1C1E;
  letter-spacing: -0.5px;
  line-height: 41px;
}

/* ── Home page ────────────────────────────────────────────────────────────── */

.home-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #EEF2F3;
}

.home-scroll {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 20px;
}

.home-scroll::-webkit-scrollbar { width: 0; }

.home-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px;
}

.home-card {
  width: 100%;
  background: #fff;
  text-align: left;
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: rgba(0,0,0,0.09) 0px 1px 4px;
  border: none;
  cursor: pointer;
  display: block;
  transition: opacity 0.15s;
  font-family: inherit;
}

.home-card:active { opacity: 0.7; }

.home-card img {
  width: 40px;
  height: auto;
  margin-bottom: 14px;
  display: block;
  user-select: none;
  pointer-events: none;
  draggable: false;
}

.home-card p {
  font-size: 17px;
  font-weight: 500;
  color: #1C1C1E;
}

/* Home licence tray */
.home-tray {
  flex-shrink: 0;
  padding: 0 16px;
}

.home-tray-btn {
  width: 100%;
  display: block;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  background: linear-gradient(160deg, rgb(28,51,70) 0%, rgb(30,58,82) 40%, rgb(38,73,95) 100%);
  padding: 18px 18px 20px;
  position: relative;
  text-align: left;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
  font-family: inherit;
}

.home-tray-btn:active { opacity: 0.8; }

.home-tray-expand {
  position: absolute;
  top: 16px;
  right: 16px;
}

.home-tray-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.home-tray-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ── Flex column content layout ───────────────────────────────────────────── */

.flex-col-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #EEF2F3;
  overflow-y: auto;
  padding-bottom: 20px;
}

.flex-col-page::-webkit-scrollbar { width: 0; }

.fcards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px;
}

/* ── White card / list ────────────────────────────────────────────────────── */

.wcard {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: rgba(0,0,0,0.09) 0px 1px 4px;
}

.wcard-title {
  font-size: 17px;
  font-weight: 700;
  color: #1C1C1E;
  padding: 16px 16px 10px;
}

.list-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-top: 0.5px solid #E5E5EA;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: opacity 0.12s;
  font-family: inherit;
}

.list-btn:first-child { border-top: none; }
.list-btn:active { opacity: 0.6; }

.list-btn.py14 { padding-top: 14px; padding-bottom: 14px; }

.lt { font-size: 17px; font-weight: 500; color: #1C1C1E; }
.lt.fw400 { font-weight: 400; }
.ls { font-size: 15px; color: #8E8E93; margin-top: 3px; line-height: 1.35; }

.chevron-ico {
  flex-shrink: 0;
  color: #C7C7CC;
}

.ext-ico {
  flex-shrink: 0;
  color: #C7C7CC;
}

/* ── Licence hero card ────────────────────────────────────────────────────── */

.lic-hero {
  width: 100%;
  background: linear-gradient(160deg, rgb(26,51,84) 0%, rgb(44,90,132) 100%);
  border-radius: 16px;
  padding: 20px 20px 28px;
  min-height: 160px;
  box-shadow: rgba(0,0,0,0.18) 0px 2px 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: opacity 0.15s;
}

.lic-hero:active { opacity: 0.8; }

.lic-hero-expand {
  position: absolute;
  top: 18px;
  right: 18px;
}

.lic-hero-title {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
}

.lic-hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
}

/* ── Detail page layout ───────────────────────────────────────────────────── */

.detail-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #F2F2F7;
  overflow-y: auto;
  position: relative;
}

.detail-page::-webkit-scrollbar { width: 0; }

.detail-header {
  display: flex;
  align-items: center;
  padding: 48px 8px 12px;
  background: #F2F2F7;
  position: sticky;
  top: 0;
  z-index: 10;
}

.back-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.back-btn:active { opacity: 0.5; }

.detail-title {
  flex: 1;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: #000;
  margin-right: 40px; /* offset for back btn */
}

/* ── Licence details page ─────────────────────────────────────────────────── */

.last-refresh {
  font-size: 12px;
  color: #8E8E93;
  text-align: center;
  padding: 4px 16px 12px;
}

.lic-card-red {
  background: #BE1E2D;
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.lic-card-type { font-size: 14px; font-weight: 800; color: #fff; letter-spacing: 0.3px; line-height: 1.2; }
.lic-card-state { font-size: 12px; color: rgba(255,255,255,0.85); margin-top: 3px; }
.lic-logo { font-size: 13px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 5px; }

.lic-card-body {
  background: #C8DCC4;
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  min-height: 160px;
}

.lic-photo {
  width: 120px;
  min-height: 150px;
  background: #e8e8e8;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: #aaa;
  overflow: hidden;
}

.lic-photo img { width: 100%; height: 100%; object-fit: cover; }

.lic-qr-box {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: #1C1C1E;
  line-height: 1.45;
}

.btn-dark {
  background: #1C1C1E;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  font-family: inherit;
  transition: opacity 0.15s;
}
.btn-dark:active { opacity: 0.75; }

.lic-tabs {
  display: flex;
  background: #fff;
  padding: 5px;
  gap: 3px;
  border-radius: 100px;
  margin: 12px 16px 0;
  box-shadow: rgba(0,0,0,0.09) 0px 1px 4px;
}

.tab-pill {
  flex: 1;
  padding: 10px 6px;
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  color: #1C1C1E;
  background: none;
  font-family: inherit;
  transition: all 0.15s;
}

.tab-pill.active { background: #1C1C1E; color: #fff; font-weight: 500; }

/* Fields section */
.lic-fields { padding: 0 16px 40px; }

.field-row { padding: 14px 0; border-top: 0.5px solid #E5E5EA; }
.field-row:first-child { border-top: none; }
.field-pair { display: flex; gap: 0; }
.field-pair .field-row { flex: 1; }
.field-pair .field-row + .field-row { padding-left: 8px; }
.field-lbl { font-size: 13px; color: #8E8E93; margin-bottom: 5px; }
.field-val { font-size: 15px; color: #1C1C1E; font-weight: 500; display: flex; align-items: center; gap: 6px; }
.field-val.muted { color: #8E8E93; font-weight: 400; }

/* Section header */
.lic-section-hdr {
  background: #F2F2F7;
  margin: 8px -16px 0;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #6C6C70;
}

/* Status circle (green check) */
.status-circle {
  width: 22px; height: 22px;
  background: #00A650;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Card number row */
.card-num-row { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.eye-btn { background: none; border: none; cursor: pointer; color: #8E8E93; padding: 0; flex-shrink: 0; }

/* Barcode */
.barcode-box {
  border: 1px solid #E5E5EA;
  border-radius: 10px;
  padding: 12px;
  margin-top: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.barcode-box canvas { display: block; width: 100%; height: auto; }

/* Licence loading screen spinner */
.lic-load-spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(82,184,72,0.15) 20%, rgba(82,184,72,0.6) 60%, #52B848 80%, transparent 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3.5px), #fff calc(100% - 3.5px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3.5px), #fff calc(100% - 3.5px));
  animation: spin 0.85s linear infinite;
}

/* Pull-to-refresh spinner */
.ptr-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid #E5E5EA;
  border-top-color: #2E7D32;
  border-right-color: #2E7D32;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

/* QR loading spinner arc inside green circle */
.qr-spinner-arc {
  width: 38px;
  height: 38px;
  border: 4px solid rgba(255,255,255,0.25);
  border-top-color: #fff;
  border-right-color: #fff;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* QR overlay */
.qr-overlay {
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}

.qr-overlay.hidden { display: none !important; }

.qr-overlay-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 20px 16px;
}

.qr-overlay-title { font-size: 17px; font-weight: 700; color: #000; text-align: center; flex: 1; }

.qr-close-btn {
  background: none;
  border: none;
  font-size: 17px;
  color: #000;
  font-weight: 400;
  cursor: pointer;
  font-family: inherit;
  width: 48px;
  text-align: right;
  -webkit-tap-highlight-color: transparent;
}

.qr-canvas-wrap {
  display: flex;
  justify-content: center;
  padding: 12px 20px 0;
  margin-bottom: 0;
}
.qr-canvas-wrap img { width: 100%; max-width: 360px; height: auto; display: block; margin: 0 auto; }
.qr-canvas-wrap canvas { display: block; margin: 0 auto; width: 100% !important; max-width: 360px !important; height: auto !important; }

.qr-expire-txt {
  font-size: 17px;
  color: #3C3C43;
  padding: 16px 20px 8px;
  text-align: left;
}
.qr-expire-txt strong { font-weight: 700; color: #000; font-size: 17px; }

.qr-consent-txt {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
  padding: 0 20px;
  margin-bottom: 0;
}

.qr-sharing { padding: 16px 20px 40px; }

.qr-sharing-hdr {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.qr-sharing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.qr-sharing-list li { font-size: 14px; color: #000; line-height: 1.4; }

.p-badge {
  display: inline-block;
  background: #BE1E2D;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 4px;
}

.car-lic-btn {
  background: none;
  border: none;
  color: #00A650;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  padding: 8px 0;
  display: block;
  margin-top: 8px;
}

/* ── Demerit page ─────────────────────────────────────────────────────────── */

.demerit-inner { padding: 0 16px 40px; display: flex; flex-direction: column; gap: 14px; }

.demerit-card, .info-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: rgba(0,0,0,0.09) 0px 1px 4px;
}

.bal-label { font-size: 12px; color: #8E8E93; margin-bottom: 6px; }
.bal-score { display: flex; align-items: baseline; margin-bottom: 14px; }
.bal-num  { font-size: 38px; font-weight: 800; color: #1C1C1E; }
.bal-denom { font-size: 18px; color: #8E8E93; margin-left: 2px; }

.progress-track { height: 6px; background: #E5E5EA; border-radius: 3px; overflow: hidden; margin-bottom: 6px; }
.progress-fill  { height: 100%; background: #00A650; border-radius: 3px; }
.progress-lbls  { display: flex; justify-content: space-between; font-size: 12px; color: #8E8E93; }

.info-title { font-size: 15px; font-weight: 700; color: #1C1C1E; margin-bottom: 12px; }
.info-para  { font-size: 13px; line-height: 1.55; color: #1C1C1E; padding: 10px 0; border-top: 1px solid #E5E5EA; }
.info-para.green { color: #00A650; }

/* ── Admin panel ──────────────────────────────────────────────────────────── */

.admin-scroll {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: rgba(0,0,0,0.06) 0px 1px 3px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-card-title {
  font-size: 13px;
  font-weight: 600;
  color: #8E8E93;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.admin-field { display: flex; flex-direction: column; }

.admin-label {
  font-size: 13px;
  font-weight: 500;
  color: #3C3C43;
  margin-bottom: 4px;
  display: block;
}

.admin-input {
  width: 100%;
  border: 1px solid #E5E5EA;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 16px;
  color: #000;
  background: #fff;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
  appearance: none;
}

.admin-input:focus { border-color: #00A650; }

.upload-btn {
  width: 100%;
  border: 1px dashed #E5E5EA;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.15s;
}
.upload-btn:active { opacity: 0.6; }
.upload-btn span { font-size: 14px; color: #8E8E93; }

.admin-save-bar {
  position: sticky;
  bottom: 0;
  background: #F2F2F7;
  padding: 12px 16px 24px;
}

.btn-green {
  width: 100%;
  padding: 16px;
  border-radius: 50px;
  background: #00A650;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.15s;
}

.btn-green:active { opacity: 0.8; }

/* ── Utility ──────────────────────────────────────────────────────────────── */

.hidden { display: none !important; }


/* ── Mobile: fill the real screen, hide the desktop frame ────────────────── */

@media (max-width: 500px) {
  body { background: #ffffff; min-height: 100dvh; }

  .page-bg {
    padding: 0;
    align-items: stretch;
    min-height: 100dvh;
  }

  .phone-shell {
    width: 100%;
    height: 100dvh;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
}

