:root {
  --primary: #3730d4;
  --primary-dark: #2d27b0;
  --primary-muted: #eef0fd;
  --bg: #eef0f5;
  --card: #fff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --error: #ef4444;
  --input-bg: #f3f4f6;
  --green-bg: #dcfce7;
  --red-bg: #fee2e2;
  --yellow-bg: #fef3c7;
  --blue-bg: #dbeafe;
  --purple-bg: #ede9fe;
  --shadow: 0 2px 16px rgba(55, 48, 212, .07);
  --shadow-lg: 0 8px 40px rgba(55, 48, 212, .18);
  --r: 14px;
  --rs: 9px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 99px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(.97)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

.au {
  animation: fadeUp .3s ease both
}

.au1 {
  animation: fadeUp .3s .06s ease both
}

.au2 {
  animation: fadeUp .3s .12s ease both
}

.au3 {
  animation: fadeUp .3s .18s ease both
}

.au4 {
  animation: fadeUp .3s .24s ease both
}

/* AUTH */
#auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.auth-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 36px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  min-height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
}

/* Logo Image Styles - Customize logo by replacing logo.jpeg */
.logo-img {
  width: 120px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 4px;
}

.btn-su {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: background .2s;
}

.btn-su:hover {
  background: var(--primary-dark);
}

.auth-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
}

.auth-card {
  background: var(--card);
  border-radius: var(--r);
  padding: 38px 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  animation: fadeUp .4s ease;
}

.auth-logo {
  text-align: center;
  margin-bottom: 26px;
}

.auth-logo .sub {
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.auth-logo .brand {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.tab-bar {
  display: flex;
  background: #f3f4f6;
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 26px;
}

.tab-btn {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all .22s;
}

.tab-btn.active {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(55, 48, 212, .28);
}

.fg {
  margin-bottom: 15px;
}

.fg label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.iw {
  position: relative;
}

.ii {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: .9rem;
  pointer-events: none;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 11px 38px 11px 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--rs);
  background: var(--input-bg);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.fg input.ni,
.fg select.ni,
.fg textarea.ni {
  padding-left: 14px;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(55, 48, 212, .09);
  background: #fff;
}

.fg input.err {
  border-color: var(--error);
}

.em {
  color: var(--error);
  font-size: .76rem;
  margin-top: 4px;
  display: none;
}

.em.show {
  display: block;
}

.eye {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--muted);
  background: none;
  border: none;
  font-size: 1rem;
  padding: 0;
}

.forgot {
  text-align: right;
  margin: -6px 0 14px;
}

.forgot a {
  font-size: .8rem;
  color: var(--muted);
  text-decoration: none;
}

.forgot a:hover {
  color: var(--primary);
}

.btn-p {
  width: 100%;
  padding: 13px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s, transform .1s;
}

.btn-p:hover {
  background: var(--primary-dark);
}

.btn-p:active {
  transform: scale(.98);
}

.auth-foot {
  text-align: center;
  margin-top: 18px;
  font-size: .84rem;
  color: var(--muted);
}

.auth-foot a {
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.fg select.ni {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px !important;
}

/* DASHBOARD */
#dash-page {
  display: none;
  min-height: 100vh;
}

#dash-page.on {
  display: flex;
  flex-direction: column;
}

.dn {
  display: flex;
  align-items: center;
  padding: 13px 22px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .04);
  min-height: 60px;
}

.dn-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  min-width: 0;
  flex-shrink: 1;
}

.dn-brand img {
  max-width: 120px;
  max-height: 40px;
}

/* Dashboard Badge Logo Styles - Customize by replacing badge.png */
.dn-badge {
  width: 120px;
  height: 40px;
  border-radius: 4px;
  flex-shrink: 0;
  object-fit: contain;
}

.dn-right {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  flex-shrink: 0;
  margin-left: auto;
}

.date-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .83rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: border-color .2s;
}

.date-btn:hover {
  border-color: var(--primary);
}

.date-range-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-date-range {
  display: flex;
  align-items: center;
  gap: 6px;
}

.date-input {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 5px 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  color: var(--text);
  background: #fff;
}

.date-input:focus {
  outline: none;
  border-color: var(--primary);
}

.date-separator {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 500;
}

.btn-logout {
  padding: 7px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}

.btn-logout:hover {
  border-color: var(--error);
  color: var(--error);
}

/* MOBILE OPTIMIZATIONS */
@media(max-width:768px) {
  .dn-right {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    max-width: 200px;
  }

  .date-range-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    align-items: flex-end;
  }

  .custom-date-range {
    display: flex;
    gap: 4px;
    width: 100%;
    justify-content: flex-end;
  }

  .date-input {
    min-width: 120px;
    flex: 1;
    max-width: 140px;
  }

  .date-btn {
    font-size: .75rem;
    padding: 6px 10px;
    gap: 4px;
    width: auto;
    min-width: 120px;
    justify-content: center;
  }

  .btn-logout {
    font-size: .75rem;
    padding: 6px 12px;
    width: auto;
    text-align: center;
  }
}

@media(max-width:480px) {
  .dn-brand {
    font-size: .95rem;
  }

  .dn-brand img {
    max-width: 90px;
    max-height: 28px;
  }

  .dn-right {
    max-width: 180px;
  }

  .date-range-container {
    gap: 4px;
  }

  .custom-date-range {
    flex-direction: row;
    gap: 4px;
    width: 100%;
    justify-content: flex-end;
  }

  .date-input {
    width: 120px;
    font-size: 0.75rem;
    padding: 4px 6px;
  }

  .date-separator {
    display: inline;
    font-size: 0.7rem;
  }

  .date-btn {
    font-size: .7rem;
    padding: 5px 8px;
    width: auto;
    min-width: 100px;
  }

  .btn-logout {
    font-size: .7rem;
    padding: 5px 10px;
    width: auto;
  }
}

.dl {
  display: flex;
  flex: 1;
  min-height: 0;
}

/* AUTH MOBILE OPTIMIZATIONS */
@media(max-width:480px) {
  .auth-nav {
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .auth-nav .logo {
    font-size: 1rem;
    gap: 6px;
  }

  .auth-nav .logo-img {
    width: 24px;
    height: 24px;
  }

  .btn-su {
    font-size: .8rem;
    padding: 8px 16px;
    order: 2;
  }

  .auth-body {
    padding: 30px 16px;
  }

  .auth-card {
    padding: 24px 20px;
    max-width: none;
  }

  .auth-logo .brand {
    font-size: 1.25rem;
    gap: 6px;
  }

  .auth-logo .brand img {
    width: 90px;
    height: 28px;
  }

  .tab-bar {
    margin-bottom: 20px;
  }

  .tab-btn {
    font-size: .85rem;
    padding: 8px;
  }

  .fg {
    margin-bottom: 12px;
  }

  .fg input,
  .fg select,
  .fg textarea {
    font-size: .9rem;
    padding: 10px 36px 10px 36px;
  }

  .fg input.ni,
  .fg select.ni,
  .fg textarea.ni {
    padding-left: 12px;
  }

  .eye {
    right: 8px;
  }

  .forgot {
    margin: -4px 0 12px;
  }
}

/* MOBILE BOTTOM BAR IMPROVEMENTS */
@media(max-width:660px) {
  .mbar {
    padding: 8px 6px;
    gap: 2px;
  }

  .mbi {
    font-size: .6rem;
    padding: 6px 2px;
    gap: 2px;
  }

  .mbi-icon {
    font-size: 1rem;
  }

  .dm {
    padding: 16px 12px 100px;
  }
}

/* GENERAL MOBILE IMPROVEMENTS */

/* Mobile overrides moved to end of file to fix cascade issue */


@media(max-width:480px) {
  /* Common mobile overrides can stay here if needed */
}

.dash-mobile-actions {
  display: none;
}

.sidebar {
  position: fixed;
  left: 0;
  top: 60px;
  bottom: 0;
  width: 60px;
  background: var(--card);
  border-right: 1px solid var(--border);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 200;
  transition: width .26s;
  overflow: hidden;
}

.sidebar.expanded {
  width: 200px;
}

.si {
  display: flex;
  align-items: center;
  gap: 11px;
  width: calc(100% - 12px);
  padding: 11px 13px;
  border-radius: 10px;
  border: none;
  background: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .87rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
  position: relative;
  white-space: nowrap;
}

.si:hover {
  background: #f3f4f6;
  color: var(--text);
}

.si.active {
  background: var(--primary-muted);
  color: var(--primary);
  font-weight: 700;
}

.si-icon {
  font-size: 1.1rem;
  width: 22px;
  height: 22px;
  text-align: center;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.si-lbl {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .22s, transform .22s;
  font-size: .86rem;
}

.si-tip {
  display: none;
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #111827;
  color: #fff;
  font-size: .73rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 7px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 500;
}

.si-tip::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: #111827;
  border-left: none;
}

.sidebar:not(.expanded) .si:hover .si-tip {
  display: block;
}

.si-div {
  width: 36px;
  height: 1px;
  background: var(--border);
  margin: 6px 0;
  flex-shrink: 0;
  transition: width .26s;
}

.sidebar.expanded .si-div {
  width: calc(100% - 24px);
}

.sidebar.expanded .si-lbl {
  opacity: 1;
  transform: translateX(0);
}

/* MOBILE: hide sidebar, show bottom bar, hide hamburger */
@media(max-width:660px) {
  .sidebar {
    display: none !important;
  }

  .mbar {
    display: flex !important;
  }

  .ham-btn {
    display: none !important;
  }

  .dm {
    margin-left: 0 !important;
  }
}

/* DESKTOP: sidebar always visible, push layout, hamburger flush-left */
@media(min-width:661px) {
  .ham-btn {
    display: flex !important;
  }

  .dn {
    padding: 0 22px 0 0;
  }

  .dn-brand {
    padding-left: 16px;
  }

  .sidebar {
    width: 60px;
  }

  .sidebar.expanded {
    width: 220px;
  }

  .sidebar.expanded .si-lbl {
    opacity: 1;
    transform: translateX(0);
  }

  .sidebar.expanded .si-div {
    width: calc(100% - 24px);
  }

  .dm {
    margin-left: 60px;
  }

  .sidebar.expanded~.dm {
    margin-left: 220px;
  }
}

/* HAMBURGER BUTTON */
.ham-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  border-right: 1px solid var(--border);
  border-radius: 0;
  flex-shrink: 0;
  background: transparent;
  cursor: pointer;
  transition: background .2s;
}

.ham-btn:hover {
  background: var(--primary-muted);
}

.ham-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}

.ham-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ham-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.ham-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 7px 4px;
  gap: 1px;
  z-index: 300;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .07);
}

.mbi {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 5px 3px;
  border-radius: 8px;
  border: none;
  background: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .62rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}

.mbi:hover {
  color: var(--primary);
}

.mbi.active {
  color: var(--primary);
  background: var(--primary-muted);
}

.mbi-icon {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dm {
  flex: 1;
  overflow-y: auto;
  padding: 22px 24px 80px;
  background: var(--bg);
  transition: margin-left .26s;
}

@media(max-width:660px) {
  .dm {
    padding: 14px 12px 90px;
  }
}

.sg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}


/* Conflicting media queries removed to prefer mobile settings above */


.sc {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform .2s, box-shadow .2s;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.sc:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(55, 48, 212, .12);
}

.sic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.sic.bl {
  background: var(--primary-muted);
}

.sic.re {
  background: var(--red-bg);
}

.sic.gr {
  background: var(--green-bg);
}

.sic.pu {
  background: var(--purple-bg);
}

.sv {
  font-family: 'Sora', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.sl {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
}

.cc {
  background: var(--card);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--shadow);
}

.ct {
  font-family: 'Sora', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.cw {
  height: 230px;
  position: relative;
}

/* MODAL SYSTEM */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, .48);
  backdrop-filter: blur(4px);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.overlay.open {
  display: flex;
}

.modal {
  background: var(--card);
  border-radius: 18px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: slideIn .28s ease both;
  position: relative;
}

.msm {
  max-width: 520px;
}

.mmd {
  max-width: 780px;
}

.mlg {
  max-width: 980px;
}

.modal-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 22px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--card);
  z-index: 10;
  border-radius: 18px 18px 0 0;
}

.modal-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all .2s;
}

.modal-close:hover {
  background: var(--red-bg);
  border-color: var(--error);
  color: var(--error);
}

.mbody {
  padding: 20px 22px 26px;
}

/* ADD ORDER */
.add-layout {
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 18px;
}

@media(max-width:640px) {
  .add-layout {
    grid-template-columns: 1fr;
  }

  .add-layout .form-section {
    order: 1;
  }

  .add-layout .pb {
    order: 2;
    max-width: 220px;
    margin: 12px auto;
    padding: 10px;
  }

  .add-layout .form-acts {
    order: 3;
    margin-top: 16px;
  }

  .add-layout .pb h3 {
    font-size: .75rem;
    margin-bottom: 8px;
  }

  .add-layout .pbr {
    padding: 8px 10px;
    margin-bottom: 6px;
    font-size: .85rem;
  }

  .add-layout .pbp {
    padding: 8px 10px;
  }
}

.pb {
  background: var(--card);
  border-radius: var(--r);
  padding: 14px;
  border: 2px solid var(--primary-muted);
}

.pb h3 {
  font-size: .84rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 13px;
}

.pbr {
  background: var(--input-bg);
  border-radius: var(--rs);
  padding: 12px 13px;
  margin-bottom: 9px;
}

.pbl {
  font-size: .7rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 2px;
}

.pbv {
  font-size: 1rem;
  font-weight: 700;
}

.pbp {
  border-radius: var(--rs);
  padding: 12px 13px;
}

.fr2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media(max-width:420px) {
  .fr2 {
    grid-template-columns: 1fr;
  }
}

.di {
  position: relative;
}

.ds {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 600;
  color: var(--muted);
  font-size: .84rem;
}

.di input {
  padding-left: 45px !important;
}

.form-acts {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.btn-sv {
  flex: 1;
  padding: 12px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--rs);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s;
}

.btn-sv:hover {
  background: var(--primary-dark);
}

.btn-cn {
  flex: 1;
  padding: 12px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: var(--rs);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s;
}

.btn-cn:hover {
  border-color: var(--error);
  color: var(--error);
}

/* ORDERS TABLE */
.srow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.sw {
  position: relative;
  flex: 1;
  min-width: 140px;
}

.sw input {
  width: 100%;
  padding: 9px 14px 9px 32px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .84rem;
  color: var(--text);
  outline: none;
  background: var(--input-bg);
  transition: border-color .2s;
}

.sw input:focus {
  border-color: var(--primary);
  background: #fff;
}

.sw .si-s {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: .82rem;
}

.fw {
  position: relative;
}

.fbtn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 13px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .2s;
}

.fbtn:hover {
  border-color: var(--primary);
}

.fdrop {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--rs);
  box-shadow: var(--shadow-lg);
  z-index: 50;
  min-width: 130px;
  overflow: hidden;
  display: none;
}

.fdrop.open {
  display: block;
}

.fopt {
  padding: 10px 15px;
  font-size: .84rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s;
}

.fopt:hover {
  background: #f3f4f6;
}

.fopt.on {
  color: var(--primary);
  font-weight: 700;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  text-align: left;
  padding: 10px 15px;
  font-size: .71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  background: #fafafa;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

td {
  padding: 12px 15px;
  font-size: .85rem;
  border-bottom: 1px solid #f3f4f6;
  white-space: nowrap;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: #f9fafb;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .73rem;
  font-weight: 700;
  white-space: nowrap;
}

.badge.delivered,
.badge.completed {
  background: #dcfce7;
  color: #166534;
}

.badge.shipped,
.badge.confirmed {
  background: var(--blue-bg);
  color: #1e40af;
}

.badge.pending {
  background: var(--yellow-bg);
  color: #92400e;
}

.badge.cancelled {
  background: var(--red-bg);
  color: #991b1b;
}

.pag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 14px 0 2px;
}

.pbtn {
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--text);
  transition: all .18s;
}

.pbtn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pbtn.on {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.pbtn:disabled {
  opacity: .4;
  cursor: default;
}

.mob-orders-header,
.mob-cards {
  display: none;
}

@media(max-width:560px) {

  .srow,
  .desk-tbl {
    display: none !important;
  }

  .mob-orders-header {
    display: block;
    margin-bottom: 16px;
  }

  .mob-cards {
    display: block;
  }
}

@media(max-width:560px) {
  .mob-orders-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }

  .mob-search-section {
    order: 1;
    flex: 1;
    min-width: 0;
  }

  .mob-filter-section {
    order: 2;
    display: flex;
    flex-shrink: 0;
    position: relative;
  }

  .mob-filter-btn {
    padding: 8px 16px;
    font-size: .8rem;
  }

  .mob-filter-drop {
    min-width: 150px;
  }
}

.moc {
  border: 1.5px solid var(--border);
  border-radius: 11px;
  padding: 16px;
  margin-bottom: 12px;
  background: var(--card);
}

.moc-id {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 10px;
  color: var(--text);
}

.moc-row {
  font-size: .85rem;
  color: var(--text);
  margin-bottom: 4px;
}

.moc-row:last-child {
  margin-bottom: 0;
}

/* ORDER STATUS */
.sf-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.sfbtn {
  padding: 8px 15px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.sfbtn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.sfbtn.on {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  font-weight: 700;
}

.st-mob {
  display: none;
  flex-direction: column;
  gap: 9px;
}

@media(max-width:560px) {
  .st-desk {
    display: none !important;
  }

  .st-mob {
    display: flex;
  }
}

/* PAGE HEADER */
.page-header {
  text-align: center;
  margin-bottom: 24px;
  padding: 20px 0;
}

.page-header h1 {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-header p {
  color: var(--muted);
  font-size: 1rem;
}

/* FAQ SECTION */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #f8fafc;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  transition: background .2s;
}

.faq-question:hover {
  background: #f1f5f9;
}

.faq-icon {
  font-size: .8rem;
  transition: transform .2s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
}

/* CONTACT SECTION */
.contact-section {
  text-align: center;
  margin-top: 40px;
  padding: 30px 20px;
  background: #f8fafc;
  border-radius: var(--r);
}

.contact-section h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-section>p {
  margin-bottom: 24px;
  color: var(--muted);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.contact-icon {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.smc {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 7px;
}

.smc-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.smc-l {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 500;
}

.smc-v {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

/* EDIT ORDERS */
.el2 {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 16px;
  align-items: start;
}

@media(max-width:640px) {
  .el2 {
    grid-template-columns: 1fr;
  }
}

.elist {
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-height: 54vh;
  overflow-y: auto;
  padding-right: 3px;
}

.eoi {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  cursor: pointer;
  transition: all .2s;
}

.eoi:hover {
  border-color: var(--primary);
}

.eoi.sel {
  border-color: var(--primary);
  background: var(--primary-muted);
}

.eoi-ec {
  font-weight: 700;
  font-size: .87rem;
}

.eoi-sub {
  font-size: .73rem;
  color: var(--muted);
  margin-bottom: 5px;
}

.eoi-ep {
  font-size: .82rem;
  color: var(--text);
}

.eoi-epr {
  font-size: .8rem;
  color: var(--primary);
  font-weight: 700;
  margin-top: 3px;
}

.eoi-r {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.btn-ei {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 11px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .77rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all .2s;
}

.btn-ei:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-edit-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 6px 12px;
  border: 1px solid var(--primary);
  border-radius: 5px;
  background: #fff;
  color: var(--primary);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.btn-edit-small:hover {
  background: var(--primary);
  color: #fff;
}

.btn-edit-small:active {
  opacity: .9;
}

.efc-box {
  background: var(--input-bg);
  border-radius: var(--r);
  padding: 18px;
}

.efc-box h3 {
  font-family: 'Sora', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.epbox {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--rs);
  padding: 12px 13px;
  margin-bottom: 13px;
}

.epbox-lbl {
  font-size: .77rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.epbox-val {
  font-size: 1rem;
  font-weight: 700;
}

.epbox-sub {
  font-size: .7rem;
  color: var(--muted);
  margin-top: 2px;
}

.eacts {
  display: flex;
  gap: 9px;
}

.btn-upd {
  flex: 1;
  padding: 11px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--rs);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: background .2s;
}

.btn-upd:hover {
  background: var(--primary-dark);
}

.btn-cn2 {
  padding: 11px 16px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--rs);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}

.btn-cn2:hover {
  border-color: var(--error);
  color: var(--error);
}

.edit-empty {
  text-align: center;
  padding: 38px 16px;
  color: var(--muted);
}

.ee-ico {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

/* SUPPORT */
.sl2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

@media(max-width:600px) {
  .sl2 {
    grid-template-columns: 1fr;
  }
}

.faq-card h2,
.contact-card h2 {
  font-family: 'Sora', sans-serif;
  font-size: .94rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: .86rem;
  gap: 9px;
  transition: color .2s;
}

.faq-q:hover {
  color: var(--primary);
}

.faq-chev {
  font-size: .8rem;
  color: var(--muted);
  transition: transform .25s;
  flex-shrink: 0;
}

.faq-chev.op {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-ans {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}

.faq-ans.op {
  max-height: 200px;
  padding-bottom: 12px;
}

.contact-card .fg textarea.ni {
  padding: 12px 14px;
  resize: vertical;
  min-height: 95px;
  line-height: 1.5;
}

.btn-sub {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--rs);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s;
}

.btn-sub:hover {
  background: var(--primary-dark);
}

/* ADDITIONAL MOBILE OPTIMIZATIONS */
@media(max-width:640px) {
  .modal {
    max-height: 96vh;
    border-radius: 12px;
  }

  .msm {
    max-width: none;
  }

  .mmd {
    max-width: none;
  }

  .mlg {
    max-width: none;
  }

  .modal-hd {
    padding: 16px 18px;
  }

  .modal-title {
    font-size: .95rem;
  }

  .modal-close {
    width: 28px;
    height: 28px;
    font-size: .9rem;
  }

  .mbody {
    padding: 16px 18px 20px;
  }
}

@media(max-width:480px) {
  .overlay {
    padding: 4px;
  }

  .modal {
    max-height: 98vh;
    border-radius: 8px;
  }

  .modal-hd {
    padding: 14px 16px;
  }

  .modal-title {
    font-size: .9rem;
  }

  .modal-close {
    width: 26px;
    height: 26px;
    font-size: .8rem;
  }

  .mbody {
    padding: 14px 16px 18px;
  }
}

.cnote {
  font-size: .74rem;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #111827;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: .84rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: all .28s;
  z-index: 9999;
  max-width: 290px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ── SUPPORT PAGE ──────────────────────────────────────────────────────── */
.sp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--card);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden;
}

@media(max-width:700px) {
  .sp-layout {
    grid-template-columns: 1fr;
  }
}

.sp-faq {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}

@media(max-width:700px) {
  .sp-faq {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

.sp-faq h2,
.sp-contact h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.sp-faq-item {
  border-bottom: 1px solid var(--border);
}

.sp-faq-item:last-child {
  border-bottom: none;
}

.sp-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  cursor: pointer;
  font-size: .87rem;
  font-weight: 600;
  color: var(--text);
  gap: 10px;
  user-select: none;
}

.sp-faq-q:hover {
  color: var(--primary);
}

.sp-faq-chev {
  font-size: .72rem;
  color: var(--muted);
  transition: transform .22s;
  flex-shrink: 0;
}

.sp-faq-item.open .sp-faq-chev {
  transform: rotate(180deg);
  color: var(--primary);
}

.sp-faq-ans {
  display: none;
  padding: 0 0 13px;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65;
}

.sp-faq-item.open .sp-faq-ans {
  display: block;
}

.sp-contact {
  padding: 28px 24px;
}

.sp-contact .fg {
  margin-bottom: 13px;
}

.sp-contact label {
  display: block;
  font-size: .81rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text);
}

.sp-contact input,
.sp-contact textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--rs);
  font-family: 'DM Sans', sans-serif;
  font-size: .87rem;
  color: var(--text);
  background: var(--input-bg);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.sp-contact input:focus,
.sp-contact textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(55, 48, 212, .08);
  background: #fff;
}

.sp-contact textarea {
  resize: vertical;
  min-height: 105px;
  line-height: 1.5;
}

.sp-submit {
  width: 100%;
  padding: 11px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s;
  margin-top: 2px;
}

.sp-submit:hover {
  background: var(--primary-dark);
}

.sp-note {
  font-size: .74rem;
  color: var(--muted);
  margin-top: 8px;
  text-align: center;
}

.desk-tbl {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.desk-tbl table {
  width: 100%;
  border-collapse: collapse;
}

.desk-tbl th {
  background: #f8fafc;
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
  font-size: .88rem;
  letter-spacing: normal;
  padding: 16px 22px;
  border-bottom: 1px solid #e5e7eb;
}

.desk-tbl td {
  padding: 16px 22px;
  color: var(--text);
  border-bottom: 1px solid #f3f4f6;
  font-size: .9rem;
}

.desk-tbl tr:last-child td {
  border-bottom: none;
}

/* DESKTOP TABLE EXACT MATCH RE-OVERRIDE */
.st-desk,
.desk-tbl {
  background: #fff !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04) !important;
  padding: 18px !important;
  overflow-x: auto !important;
  margin-top: 24px !important;
  border: none !important;
}

.st-desk table,
.desk-tbl table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
}

.st-desk th,
.desk-tbl th {
  background: #f8fafc !important;
  color: #6b7280 !important;
  font-weight: 500 !important;
  text-transform: none !important;
  font-size: .88rem !important;
  letter-spacing: normal !important;
  padding: 16px 22px !important;
  border-bottom: 1px solid #e5e7eb !important;
}

.st-desk td,
.desk-tbl td {
  padding: 16px 22px !important;
  color: #111827 !important;
  border-bottom: 1px solid #f3f4f6 !important;
  font-size: .9rem !important;
  font-weight: 400 !important;
}

.st-desk tr:last-child td,
.desk-tbl tr:last-child td {
  border-bottom: none !important;
}

/* For properly applying border-radius on separate tables */
.st-desk th:first-child,
.desk-tbl th:first-child {
  border-top-left-radius: 10px;
}

.st-desk th:last-child,
.desk-tbl th:last-child {
  border-top-right-radius: 10px;
}

.sfbtn {
  padding: 10px 18px !important;
}

/* ADD NEW ORDER MOBILE EXACT MATCH */
.add-mobile-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #f3f4f6;
  padding: 24px;
  margin-top: 10px;
}

.add-mobile-card .page-header {
  text-align: left;
  margin-bottom: 20px;
  padding: 0;
}

.add-mobile-card .page-header h1 {
  font-size: 1.35rem;
  color: #111827;
  font-family: 'Sora', sans-serif;
}

.fr2-mobile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.pb-styled {
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 14px;
  padding: 18px;
  margin: 20px 0;
}

.pb-styled h3 {
  font-size: .95rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}

.pb-styled-card {
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.pb-styled-card:last-child {
  margin-bottom: 0;
}

.pb-styled-card.profit {
  background: #dcfce7;
  border: none;
}

.pb-styled-main {
  font-size: .9rem;
  font-weight: 700;
  color: #111827;
}

.pb-styled-card.profit .pb-styled-main {
  color: #166534;
}

.pb-styled-sub {
  font-size: .75rem;
  color: #6b7280;
}

@media(max-width: 640px) {
  .add-mobile-card {
    padding: 16px;
  }

  .form-acts {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .btn-sv,
  .btn-cn {
    width: 100%;
    border-radius: 12px;
    padding: 14px;
    font-size: 1rem;
  }

  .btn-sv {
    background: #5a54db !important;
  }

  .btn-cn {
    border-color: #e5e7eb !important;
    background: #fff;
    font-weight: 600;
    color: #374151;
  }

  .pb-styled-card {
    padding: 10px 12px;
  }
}

/* DASHBOARD MOBILE OVERRIDES (Moved to end for cascade priority) */
@media(max-width:640px) {
  .sg {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
  }

  .dash-mobile-actions {
    display: flex !important;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
  }

  .dash-mobile-actions::-webkit-scrollbar {
    display: none;
  }

  .dma-btn {
    white-space: nowrap;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border);
    border-radius: 99px;
    background: #fff;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .dma-btn.primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
  }

  .sc {
    padding: 24px 20px !important;
    border-radius: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    margin-bottom: 12px;
  }

  .sic {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 18px !important;
  }

  /* Specific icon background colors based on screenshot */
  .sic.bl {
    background: #eff2ff !important;
    color: #3730d4 !important;
  }

  .sic.re {
    background: #fff5f5 !important;
    color: #ef4444 !important;
  }

  .sic.gr {
    background: #f0fdf4 !important;
    color: #16a34a !important;
  }

  .sic.pu {
    background: #f5f3ff !important;
    color: #7c3aed !important;
  }

  .sv {
    font-size: 1.75rem !important;
    font-family: 'Sora', sans-serif !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
  }

  .sl {
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    color: var(--muted) !important;
  }
}