/* SASS VAR - Professional POS Palette */
body {
  background-color: #f8fafc;
  color: #0f172a;
  padding-bottom: 75px;
}
@media (min-width: 992px) {
  body {
    padding-bottom: 20px;
    padding-left: 240px;
  }
}
body.auth-page {
  padding-left: 0 !important;
  padding-bottom: 0 !important;
}

.sm-topbar {
  height: 54px;
  background-color: var(--sm-topbar-bg);
  color: var(--sm-topbar-color);
  position: sticky;
  top: 0;
  z-index: 1030;
  border-bottom: 1px solid var(--sm-topbar-border);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.sm-topbar .sm-topbar-tabs-container {
  background-color: var(--sm-topbar-tabs-bg);
  border-radius: 8px;
}
.sm-topbar .sm-topbar-tabs-container .sm-topbar-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sm-topbar-tab-color);
  text-decoration: none;
  transition: all 0.15s ease;
}
.sm-topbar .sm-topbar-tabs-container .sm-topbar-tab i {
  font-size: 1rem;
}
.sm-topbar .sm-topbar-tabs-container .sm-topbar-tab:hover:not(.active) {
  color: var(--sm-topbar-color);
  background-color: var(--sm-topbar-tab-hover);
}
.sm-topbar .sm-topbar-tabs-container .sm-topbar-tab.active {
  background-color: var(--sm-topbar-tab-active-bg);
  color: var(--sm-topbar-color);
  font-weight: 700;
  border: 1px solid var(--sm-topbar-border);
  box-shadow: none !important;
}
.sm-topbar .sm-topbar-tabs-container .sm-topbar-tab.active i {
  color: #00472B;
}
.sm-topbar .sm-topbar-divider {
  width: 1px;
  height: 22px;
  background-color: var(--sm-topbar-border);
  margin: 0 4px;
}
.sm-topbar .btn-light-icon {
  color: var(--sm-topbar-tab-color);
  padding: 4px 8px;
  border-radius: 6px;
}
.sm-topbar .btn-light-icon:hover {
  background-color: var(--sm-topbar-tabs-bg);
  color: var(--sm-topbar-color);
}
.sm-topbar .btn-emerald-action {
  background-color: #00472B;
  color: #ffffff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 4px 12px;
}
.sm-topbar .btn-emerald-action:hover {
  background-color: #15803d;
  color: #ffffff;
}
.sm-topbar .sm-topbar-search-box {
  background-color: var(--sm-topbar-tab-active-bg);
  border: 1px solid var(--sm-topbar-border);
  border-radius: 8px;
  padding: 4px 12px;
  width: 220px;
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.sm-topbar .sm-topbar-search-box:hover {
  border-color: #94a3b8;
}
.sm-topbar .btn-icon-ghost {
  color: var(--sm-topbar-tab-color);
  border-radius: 6px;
}
.sm-topbar .btn-icon-ghost:hover {
  background-color: var(--sm-topbar-tabs-bg);
  color: var(--sm-topbar-color);
}
.sm-topbar .sm-user-avatar-btn {
  border: 1px solid var(--sm-topbar-border);
  background-color: var(--sm-topbar-tab-active-bg);
  border-radius: 50px;
}
.sm-topbar .sm-user-avatar-btn:hover {
  background-color: var(--sm-topbar-tabs-bg);
}
.sm-topbar .sm-user-avatar-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #00472B;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
}

:root {
  --sm-topbar-bg: #f1f5f9;
  --sm-topbar-color: #0f172a;
  --sm-topbar-border: #e2e8f0;
  --sm-topbar-tabs-bg: #e2e8f0;
  --sm-topbar-tab-color: #475569;
  --sm-topbar-tab-hover: rgba(255,255,255,0.4);
  --sm-topbar-tab-active-bg: #ffffff;
  --sm-sidebar-bg: #ffffff;
  --sm-sidebar-brand-bg: #f8fafc;
  --sm-sidebar-border: #e2e8f0;
  --sm-sidebar-text: #475569;
  --sm-sidebar-text-muted: #94a3b8;
  --sm-sidebar-section: #94a3b8;
  --sm-sidebar-item-hover: #f1f5f9;
  --sm-sidebar-item-color: #334155;
  --sm-sidebar-icon: #64748b;
  --sm-sidebar-footer-bg: #f8fafc;
}

[data-bs-theme=dark] {
  --sm-topbar-bg: #1e293b;
  --sm-topbar-color: #e2e8f0;
  --sm-topbar-border: #2d3f55;
  --sm-topbar-tabs-bg: #273449;
  --sm-topbar-tab-color: #94a3b8;
  --sm-topbar-tab-hover: rgba(255,255,255,0.05);
  --sm-topbar-tab-active-bg: #1a2d40;
  --sm-sidebar-bg: #1e293b;
  --sm-sidebar-brand-bg: #162032;
  --sm-sidebar-border: #2d3f55;
  --sm-sidebar-text: #94a3b8;
  --sm-sidebar-text-muted: #64748b;
  --sm-sidebar-section: #475569;
  --sm-sidebar-item-hover: #273449;
  --sm-sidebar-item-color: #cbd5e1;
  --sm-sidebar-icon: #64748b;
  --sm-sidebar-footer-bg: #162032;
}

.sm-sidebar {
  width: 240px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: var(--sm-sidebar-bg);
  color: var(--sm-sidebar-text);
  z-index: 1040;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--sm-sidebar-border);
  overflow-y: auto;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.sm-sidebar .sm-sidebar-brand {
  border-bottom: 1px solid var(--sm-sidebar-border);
  background-color: var(--sm-sidebar-brand-bg);
  transition: background-color 0.2s ease;
}
.sm-sidebar .sm-sidebar-brand .bg-emerald-gradient {
  background: linear-gradient(135deg, #00472B, #15803d);
  width: 36px;
  height: 36px;
}
.sm-sidebar .sm-sidebar-brand .sm-brand-name {
  color: var(--sm-sidebar-item-color) !important;
  letter-spacing: -0.01em;
}
.sm-sidebar .sm-sidebar-brand .sm-store-subtext {
  color: var(--sm-sidebar-text-muted) !important;
}
.sm-sidebar .sm-nav-section-title {
  letter-spacing: 0.06em;
  font-size: 0.68rem;
  color: var(--sm-sidebar-section) !important;
}
.sm-sidebar .sm-sidebar-menu li {
  margin-bottom: 2px;
}
.sm-sidebar .sm-sidebar-menu li .sm-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--sm-sidebar-text);
  font-weight: 500;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.15s ease;
}
.sm-sidebar .sm-sidebar-menu li .sm-nav-item i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  color: var(--sm-sidebar-icon);
  transition: color 0.15s ease;
}
.sm-sidebar .sm-sidebar-menu li .sm-nav-item .text-emerald {
  color: #00472B !important;
}
[data-bs-theme=dark] .sm-sidebar .sm-sidebar-menu li .sm-nav-item .text-emerald {
  color: #4ade80 !important;
}
.sm-sidebar .sm-sidebar-menu li .sm-nav-item:hover {
  background-color: var(--sm-sidebar-item-hover);
  color: var(--sm-sidebar-item-color);
}
.sm-sidebar .sm-sidebar-menu li .sm-nav-item:hover i {
  color: #00472B;
}
.sm-sidebar .sm-sidebar-menu li .sm-nav-item.active {
  background-color: #00472B;
  color: #ffffff !important;
  font-weight: 600;
}
.sm-sidebar .sm-sidebar-menu li .sm-nav-item.active i {
  color: #ffffff !important;
}
.sm-sidebar .sm-sidebar-footer {
  background-color: var(--sm-sidebar-footer-bg);
  border-top-color: var(--sm-sidebar-border) !important;
  transition: background-color 0.2s ease;
}
.sm-sidebar .sm-sidebar-footer .text-emerald {
  color: #00472B !important;
}
[data-bs-theme=dark] .sm-sidebar .sm-sidebar-footer .text-emerald {
  color: #4ade80 !important;
}

.sm-live-pulse-dot {
  display: inline-block !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background-color: #16a34a !important;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.35);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.35);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.1);
  }
}
.sm-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #ffffff;
  border-top: 1px solid #cbd5e1;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
  z-index: 1030;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.sm-bottom-nav .sm-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #64748b;
  text-decoration: none;
  padding: 4px 6px;
  flex: 1;
  font-weight: 700;
  font-size: 0.75rem;
}
.sm-bottom-nav .sm-bottom-nav-item i {
  font-size: 1.25rem;
  margin-bottom: 1px;
  color: #64748b;
}
.sm-bottom-nav .sm-bottom-nav-item:hover, .sm-bottom-nav .sm-bottom-nav-item.active {
  color: #0f172a;
}
.sm-bottom-nav .sm-bottom-nav-item:hover i, .sm-bottom-nav .sm-bottom-nav-item.active i {
  color: #16a34a;
}
.sm-bottom-nav .sm-bottom-nav-item.active {
  background-color: rgba(22, 163, 74, 0.08);
  border-radius: 6px;
}

/* Dark mode bottom nav override */
[data-bs-theme=dark] .sm-bottom-nav {
  background-color: #0f172a !important;
  border-top-color: #1e293b !important;
}
[data-bs-theme=dark] .sm-bottom-nav .sm-bottom-nav-item {
  color: #94a3b8;
}
[data-bs-theme=dark] .sm-bottom-nav .sm-bottom-nav-item:hover, [data-bs-theme=dark] .sm-bottom-nav .sm-bottom-nav-item.active {
  color: #ffffff;
}
[data-bs-theme=dark] .sm-bottom-nav .sm-bottom-nav-item:hover i, [data-bs-theme=dark] .sm-bottom-nav .sm-bottom-nav-item.active i {
  color: #4ade80;
}
[data-bs-theme=dark] .sm-bottom-nav .sm-bottom-nav-item.active {
  background-color: rgba(255, 255, 255, 0.08);
}

/* Mobile Offcanvas Drawer Styling (Identical to Desktop Sidebar) */
.offcanvas.sm-sidebar, .offcanvas.offcanvas-start {
  z-index: 1060 !important;
  border-right: 0 !important;
  width: 280px;
  background-color: var(--sm-sidebar-bg) !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15) !important;
}
.offcanvas.sm-sidebar .btn-close, .offcanvas.offcanvas-start .btn-close {
  opacity: 0.8;
}
.offcanvas.sm-sidebar .btn-close:hover, .offcanvas.offcanvas-start .btn-close:hover {
  opacity: 1;
}
[data-bs-theme=dark] .offcanvas.sm-sidebar .btn-close, [data-bs-theme=dark] .offcanvas.offcanvas-start .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.offcanvas-backdrop {
  z-index: 1050 !important;
}

.sm-main-container {
  padding-top: 16px;
  padding-bottom: 24px;
}

.sm-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.sm-card .sm-card-header {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  background-color: #f8fafc;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sm-card .sm-card-header .sm-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #162032;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sm-card .sm-card-body {
  padding: 1rem;
}

.sm-status-badge {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35em 0.75em;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.sm-status-badge.status-disponible {
  background-color: #d1e7dd;
  color: #0f5132;
}
.sm-status-badge.status-faible {
  background-color: #fff3cd;
  color: #664d03;
}
.sm-status-badge.status-rupture {
  background-color: #f8d7da;
  color: #842029;
}

.sm-stat-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
  height: 100%;
}
.sm-stat-box .sm-stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.sm-stat-box .sm-stat-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: #162032;
  line-height: 1.2;
}
.sm-stat-box .sm-stat-subtext {
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.25rem;
}
.sm-stat-box.primary-box {
  border-color: #00472B;
  background-color: #f0fdf4;
}
.sm-stat-box.primary-box .sm-stat-label, .sm-stat-box.primary-box .sm-stat-value {
  color: #115c38;
}

.sm-fab-button {
  position: fixed;
  bottom: 72px;
  right: 16px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #00472B;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  z-index: 1050;
  border: 2px solid #ffffff;
  cursor: pointer;
}
.sm-fab-button:hover, .sm-fab-button:focus {
  background-color: rgb(0%, 11.8431372549%, 7.172604253%);
  color: #ffffff;
}
@media (min-width: 992px) {
  .sm-fab-button {
    display: none;
  }
}

.sm-pos-layout {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 992px) {
  .sm-pos-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    align-items: start;
  }
}

.sm-search-wrapper {
  position: relative;
}

.sm-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.sm-search-box:focus-within {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.sm-search-icon {
  color: #64748b;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.sm-search-box:focus-within .sm-search-icon {
  color: #16a34a;
}

.sm-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.95rem;
  color: #0f172a;
  font-weight: 500;
}
.sm-search-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.sm-scan-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #0f172a;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.15s ease;
  letter-spacing: 0.02em;
}
.sm-scan-badge i {
  font-size: 0.95rem;
}
.sm-scan-badge:hover {
  background-color: #16a34a;
}

.sm-category-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.sm-category-pills::-webkit-scrollbar {
  height: 4px;
}
.sm-category-pills::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.sm-category-pills .btn-category {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 6px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  color: #162032;
  transition: all 0.15s ease;
}
.sm-category-pills .btn-category:hover, .sm-category-pills .btn-category.active {
  background-color: #00472B;
  color: #ffffff;
  border-color: #00472B;
}

.sm-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  overflow-x: hidden;
}
@media (max-width: 1200px) {
  .sm-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .sm-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .sm-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sm-product-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.15s ease;
}
.sm-product-card:hover {
  border-color: #00472B;
}
.sm-product-card .sm-product-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f1f5f9;
}
.sm-product-card .sm-product-img-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.sm-product-card .sm-product-icon-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f5f9;
  color: #64748b;
  border-radius: 8px;
  font-size: 1.5rem;
}
.sm-product-card .sm-product-img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  border-radius: 6px;
  background-color: #f8fafc;
  padding: 4px;
  margin-bottom: 8px;
}
.sm-product-card .sm-product-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #162032;
  line-height: 1.2;
  margin-bottom: 4px;
}
.sm-product-card .sm-product-price {
  font-size: 1rem;
  font-weight: 800;
  color: #00472B;
  margin-bottom: 6px;
}

.sm-cart-panel {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  position: sticky;
  top: 70px;
  max-height: calc(100vh - 85px);
  display: flex;
  flex-direction: column;
}
.sm-cart-panel .sm-cart-header {
  background-color: #162032;
  color: #ffffff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sm-cart-panel .sm-cart-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
}
.sm-cart-panel .sm-cart-items-list {
  flex: 1;
  overflow-y: auto;
  min-height: 200px;
  padding: 8px 12px;
}
.sm-cart-panel .sm-cart-items-list .sm-cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #e2e8f0;
}
.sm-cart-panel .sm-cart-items-list .sm-cart-item:last-child {
  border-bottom: none;
}
.sm-cart-panel .sm-cart-items-list .sm-cart-item .sm-cart-item-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: #162032;
}
.sm-cart-panel .sm-cart-items-list .sm-cart-item .sm-cart-item-unitprice {
  font-size: 0.8rem;
  color: #64748b;
}
.sm-cart-panel .sm-cart-items-list .sm-cart-item .sm-qty-control {
  display: flex;
  align-items: center;
  gap: 4px;
}
.sm-cart-panel .sm-cart-items-list .sm-cart-item .sm-qty-control .btn-qty {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.sm-cart-panel .sm-cart-items-list .sm-cart-item .sm-qty-control .qty-val {
  font-size: 0.95rem;
  font-weight: 800;
  width: 24px;
  text-align: center;
}
.sm-cart-panel .sm-cart-items-list .sm-cart-item .sm-cart-item-total {
  font-size: 0.95rem;
  font-weight: 800;
  color: #162032;
  min-width: 80px;
  text-align: right;
}
.sm-cart-panel .sm-cart-total-box {
  background-color: #f1f5f9;
  padding: 14px 16px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}
.sm-cart-panel .sm-cart-total-box .sm-total-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
}
.sm-cart-panel .sm-cart-total-box .sm-total-amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: #00472B;
  line-height: 1.1;
  margin-top: 2px;
}
.sm-cart-panel .sm-payment-methods {
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.sm-cart-panel .sm-payment-methods .btn-pay-method {
  height: 48px;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 1px solid transparent;
}
.sm-cart-panel .sm-payment-methods .btn-pay-method i {
  font-size: 1.1rem;
}
.sm-cart-panel .sm-payment-methods .btn-pay-method.pay-especes {
  background-color: #d1e7dd;
  color: #0f5132;
  border-color: #16a34a;
}
.sm-cart-panel .sm-payment-methods .btn-pay-method.pay-especes:hover, .sm-cart-panel .sm-payment-methods .btn-pay-method.pay-especes.active {
  background-color: #16a34a;
  color: #ffffff;
}
.sm-cart-panel .sm-payment-methods .btn-pay-method.pay-momo {
  background-color: #e0f2fe;
  color: #0369a1;
  border-color: #0284c7;
}
.sm-cart-panel .sm-payment-methods .btn-pay-method.pay-momo:hover, .sm-cart-panel .sm-payment-methods .btn-pay-method.pay-momo.active {
  background-color: #0284c7;
  color: #ffffff;
}
.sm-cart-panel .sm-payment-methods .btn-pay-method.pay-credit {
  background-color: #f3e8ff;
  color: #6b21a8;
  border-color: #9333ea;
}
.sm-cart-panel .sm-payment-methods .btn-pay-method.pay-credit:hover, .sm-cart-panel .sm-payment-methods .btn-pay-method.pay-credit.active {
  background-color: #9333ea;
  color: #ffffff;
}
.sm-cart-panel .sm-cart-actions {
  padding: 0 12px 12px 12px;
}

#mobileCartFloatingBar {
  display: none;
}
@media (min-width: 992px) {
  #mobileCartFloatingBar {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  #mobileCartFloatingBar.show-mobile-bar {
    display: block !important;
  }
}

.sm-grid-sentinel {
  padding: 8px 0;
  grid-column: 1/-1;
}

.sm-grid-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  color: #64748b;
}

@media print {
  header,
  aside,
  nav,
  .sm-topbar,
  .sm-top-header,
  .sm-sidebar,
  .sm-bottom-nav,
  .sm-fab-button,
  #mobileCartFloatingBar,
  .btn-print-none,
  .d-print-none,
  .offcanvas {
    display: none !important;
  }
  @page {
    size: auto;
    margin: 10mm;
  }
  body {
    background: #ffffff !important;
    color: #000000 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .sm-main-layout,
  .sm-main-content,
  .container-fluid,
  main {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .card, .card-header, .card-body, .border {
    border: 1px solid #dee2e6 !important;
    box-shadow: none !important;
  }
}
.modal-touch .modal-content {
  border-radius: 0.5rem;
  border: 1px solid #162032;
  overflow: hidden;
}
.modal-touch .modal-header {
  background-color: #162032;
  color: #ffffff;
  padding: 12px 16px;
}
.modal-touch .modal-header .modal-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-touch .modal-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}
.modal-touch .modal-body {
  padding: 16px;
}
.modal-touch .modal-footer {
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 12px 16px;
}

.sm-ticket-preview {
  background-color: #ffffff;
  border: 1px dashed #94a3b8;
  padding: 16px;
  max-width: 300px;
  margin: 0 auto;
  font-family: "Courier New", Courier, monospace;
  color: #000000;
}
.sm-ticket-preview .ticket-header {
  text-align: center;
  border-bottom: 1px dashed #000;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.sm-ticket-preview .ticket-header h4 {
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 2px;
  color: #000;
}
.sm-ticket-preview .ticket-header p {
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.2;
}
.sm-ticket-preview .ticket-table {
  width: 100%;
  margin-bottom: 10px;
  font-size: 0.85rem;
}
.sm-ticket-preview .ticket-table th, .sm-ticket-preview .ticket-table td {
  padding: 3px 0;
}
.sm-ticket-preview .ticket-table th {
  border-bottom: 1px solid #000;
}
.sm-ticket-preview .ticket-footer {
  border-top: 1px dashed #000;
  padding-top: 10px;
  text-align: center;
  font-size: 0.8rem;
}
.sm-ticket-preview .ticket-footer .ticket-total {
  font-size: 1.1rem;
  font-weight: 900;
  margin: 4px 0;
}

@media print {
  @page {
    body.ticket-print-body {
      size: 80mm auto;
      margin: 5mm;
    }
  }
  body.ticket-print-body .sm-ticket-preview {
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    font-family: "Courier New", Courier, monospace !important;
    font-size: 11px !important;
    color: #000000 !important;
    background: #ffffff !important;
  }
}
[data-bs-theme=dark], body.dark-theme {
  background-color: #162032 !important;
  color: #e2e8f0 !important;
}
[data-bs-theme=dark] .card, body.dark-theme .card {
  background-color: #1a2d40 !important;
  border-color: #2d3f55 !important;
  color: #e2e8f0 !important;
}
[data-bs-theme=dark] .card .card-header, [data-bs-theme=dark] .card .card-footer, body.dark-theme .card .card-header, body.dark-theme .card .card-footer {
  background-color: #162032 !important;
  border-color: #2d3f55 !important;
  color: #cbd5e1 !important;
}
[data-bs-theme=dark] .card .card-body, body.dark-theme .card .card-body {
  color: #e2e8f0;
}
[data-bs-theme=dark] .table, body.dark-theme .table {
  --bs-table-bg: #1a2d40;
  --bs-table-striped-bg: #1e3249;
  --bs-table-hover-bg: #213553;
  --bs-table-border-color: #2d3f55;
  color: #e2e8f0;
}
[data-bs-theme=dark] .table th, [data-bs-theme=dark] .table td, body.dark-theme .table th, body.dark-theme .table td {
  border-color: #2d3f55;
  color: #e2e8f0;
}
[data-bs-theme=dark] .table thead.table-light, body.dark-theme .table thead.table-light {
  background-color: #162032 !important;
  color: #94a3b8 !important;
}
[data-bs-theme=dark] .table thead.table-light th, body.dark-theme .table thead.table-light th {
  color: #94a3b8 !important;
  background-color: #162032 !important;
  border-color: #2d3f55 !important;
}
[data-bs-theme=dark] .form-control, [data-bs-theme=dark] .form-select, [data-bs-theme=dark] .form-check-input, body.dark-theme .form-control, body.dark-theme .form-select, body.dark-theme .form-check-input {
  background-color: #1a2d40 !important;
  border-color: #2d3f55 !important;
  color: #e2e8f0 !important;
}
[data-bs-theme=dark] .form-control:focus, [data-bs-theme=dark] .form-select:focus, [data-bs-theme=dark] .form-check-input:focus, body.dark-theme .form-control:focus, body.dark-theme .form-select:focus, body.dark-theme .form-check-input:focus {
  background-color: #1e3249 !important;
  border-color: #16a34a !important;
  color: #e2e8f0 !important;
}
[data-bs-theme=dark] .form-control::placeholder, [data-bs-theme=dark] .form-select::placeholder, [data-bs-theme=dark] .form-check-input::placeholder, body.dark-theme .form-control::placeholder, body.dark-theme .form-select::placeholder, body.dark-theme .form-check-input::placeholder {
  color: #64748b !important;
}
[data-bs-theme=dark] .bootstrap-select .dropdown-toggle, body.dark-theme .bootstrap-select .dropdown-toggle {
  background-color: #1a2d40 !important;
  border-color: #2d3f55 !important;
  color: #e2e8f0 !important;
}
[data-bs-theme=dark] .bootstrap-select .dropdown-menu, body.dark-theme .bootstrap-select .dropdown-menu {
  background-color: #1a2d40 !important;
  border-color: #2d3f55 !important;
}
[data-bs-theme=dark] .bootstrap-select .dropdown-menu .dropdown-item, body.dark-theme .bootstrap-select .dropdown-menu .dropdown-item {
  color: #cbd5e1 !important;
}
[data-bs-theme=dark] .bootstrap-select .dropdown-menu .dropdown-item:hover, [data-bs-theme=dark] .bootstrap-select .dropdown-menu .dropdown-item:focus, [data-bs-theme=dark] .bootstrap-select .dropdown-menu .dropdown-item.active, body.dark-theme .bootstrap-select .dropdown-menu .dropdown-item:hover, body.dark-theme .bootstrap-select .dropdown-menu .dropdown-item:focus, body.dark-theme .bootstrap-select .dropdown-menu .dropdown-item.active {
  background-color: #273449 !important;
  color: #e2e8f0 !important;
}
[data-bs-theme=dark] .bootstrap-select .dropdown-menu .bs-searchbox input, body.dark-theme .bootstrap-select .dropdown-menu .bs-searchbox input {
  background-color: #162032 !important;
  border-color: #2d3f55 !important;
  color: #e2e8f0 !important;
}
[data-bs-theme=dark] .modal-content, body.dark-theme .modal-content {
  background-color: #1a2d40 !important;
  border-color: #2d3f55 !important;
  color: #e2e8f0 !important;
}
[data-bs-theme=dark] .modal-header, [data-bs-theme=dark] .modal-footer, body.dark-theme .modal-header, body.dark-theme .modal-footer {
  background-color: #162032 !important;
  border-color: #2d3f55 !important;
  color: #cbd5e1 !important;
}
[data-bs-theme=dark] .dropdown-menu, body.dark-theme .dropdown-menu {
  background-color: #1a2d40 !important;
  border-color: #2d3f55 !important;
}
[data-bs-theme=dark] .dropdown-menu .dropdown-item, body.dark-theme .dropdown-menu .dropdown-item {
  color: #cbd5e1 !important;
}
[data-bs-theme=dark] .dropdown-menu .dropdown-item:hover, [data-bs-theme=dark] .dropdown-menu .dropdown-item:focus, body.dark-theme .dropdown-menu .dropdown-item:hover, body.dark-theme .dropdown-menu .dropdown-item:focus {
  background-color: #273449 !important;
  color: #e2e8f0 !important;
}
[data-bs-theme=dark] .dropdown-menu .dropdown-divider, body.dark-theme .dropdown-menu .dropdown-divider {
  border-color: #2d3f55 !important;
}
[data-bs-theme=dark] .nav-tabs, body.dark-theme .nav-tabs {
  border-color: #2d3f55 !important;
}
[data-bs-theme=dark] .nav-tabs .nav-link, body.dark-theme .nav-tabs .nav-link {
  color: #94a3b8;
}
[data-bs-theme=dark] .nav-tabs .nav-link:hover, body.dark-theme .nav-tabs .nav-link:hover {
  color: #e2e8f0;
  border-color: transparent;
}
[data-bs-theme=dark] .nav-tabs .nav-link.active, body.dark-theme .nav-tabs .nav-link.active {
  background-color: #1a2d40 !important;
  border-color: #2d3f55 #2d3f55 #1a2d40 !important;
  color: #e2e8f0 !important;
}
[data-bs-theme=dark] .bg-white, body.dark-theme .bg-white {
  background-color: #1a2d40 !important;
}
[data-bs-theme=dark] .bg-light, body.dark-theme .bg-light {
  background-color: #273449 !important;
  color: #cbd5e1 !important;
}
[data-bs-theme=dark] .text-dark, body.dark-theme .text-dark {
  color: #e2e8f0 !important;
}
[data-bs-theme=dark] .text-muted, body.dark-theme .text-muted {
  color: #64748b !important;
}
[data-bs-theme=dark] .border, body.dark-theme .border {
  border-color: #2d3f55 !important;
}
[data-bs-theme=dark] .alert, body.dark-theme .alert {
  background-color: #1a2d40 !important;
  border-color: #2d3f55 !important;
  color: #e2e8f0 !important;
}
[data-bs-theme=dark] .pagination .page-link, body.dark-theme .pagination .page-link {
  background-color: #1a2d40;
  border-color: #2d3f55;
  color: #94a3b8;
}
[data-bs-theme=dark] .pagination .page-link:hover, body.dark-theme .pagination .page-link:hover {
  background-color: #273449;
  color: #e2e8f0;
}
[data-bs-theme=dark] .pagination .page-item.active .page-link, body.dark-theme .pagination .page-item.active .page-link {
  background-color: #16a34a;
  border-color: #16a34a;
  color: #fff;
}
[data-bs-theme=dark] .pagination .page-item.disabled .page-link, body.dark-theme .pagination .page-item.disabled .page-link {
  background-color: #162032;
  color: #475569;
}
[data-bs-theme=dark] .btn-light, [data-bs-theme=dark] .btn-outline-light, body.dark-theme .btn-light, body.dark-theme .btn-outline-light {
  background-color: #273449 !important;
  border-color: #2d3f55 !important;
  color: #cbd5e1 !important;
}
[data-bs-theme=dark] .btn-white, body.dark-theme .btn-white {
  background-color: #1a2d40 !important;
  border-color: #2d3f55 !important;
  color: #e2e8f0 !important;
}
[data-bs-theme=dark] .btn-outline-dark, [data-bs-theme=dark] .group-tab-btn, body.dark-theme .btn-outline-dark, body.dark-theme .group-tab-btn {
  color: #94a3b8 !important;
  border-color: #334155 !important;
  background-color: transparent !important;
}
[data-bs-theme=dark] .btn-outline-dark:hover, [data-bs-theme=dark] .group-tab-btn:hover, body.dark-theme .btn-outline-dark:hover, body.dark-theme .group-tab-btn:hover {
  color: #f8fafc !important;
  background-color: #334155 !important;
  border-color: #475569 !important;
}
[data-bs-theme=dark] .btn-outline-dark.active, [data-bs-theme=dark] .group-tab-btn.active, body.dark-theme .btn-outline-dark.active, body.dark-theme .group-tab-btn.active {
  color: #ffffff !important;
  background-color: #16a34a !important;
  border-color: #16a34a !important;
}
[data-bs-theme=dark] .alert-warning, body.dark-theme .alert-warning {
  background-color: #3a2e10 !important;
  border-color: #6c541e !important;
  color: #fef08a !important;
}
[data-bs-theme=dark] .alert-warning i, [data-bs-theme=dark] .alert-warning strong, [data-bs-theme=dark] .alert-warning span, [data-bs-theme=dark] .alert-warning div, body.dark-theme .alert-warning i, body.dark-theme .alert-warning strong, body.dark-theme .alert-warning span, body.dark-theme .alert-warning div {
  color: #fef08a !important;
}
[data-bs-theme=dark] .form-floating > label, body.dark-theme .form-floating > label {
  color: #94a3b8 !important;
}
[data-bs-theme=dark] .dt-container, [data-bs-theme=dark] .dataTables_wrapper, body.dark-theme .dt-container, body.dark-theme .dataTables_wrapper {
  color: #e2e8f0;
}
[data-bs-theme=dark] .dt-container .dt-search input, [data-bs-theme=dark] .dt-container .dataTables_filter input,
[data-bs-theme=dark] .dt-container .dt-length select, [data-bs-theme=dark] .dt-container .dataTables_length select, [data-bs-theme=dark] .dataTables_wrapper .dt-search input, [data-bs-theme=dark] .dataTables_wrapper .dataTables_filter input,
[data-bs-theme=dark] .dataTables_wrapper .dt-length select, [data-bs-theme=dark] .dataTables_wrapper .dataTables_length select, body.dark-theme .dt-container .dt-search input, body.dark-theme .dt-container .dataTables_filter input,
body.dark-theme .dt-container .dt-length select, body.dark-theme .dt-container .dataTables_length select, body.dark-theme .dataTables_wrapper .dt-search input, body.dark-theme .dataTables_wrapper .dataTables_filter input,
body.dark-theme .dataTables_wrapper .dt-length select, body.dark-theme .dataTables_wrapper .dataTables_length select {
  background-color: #1a2d40 !important;
  border-color: #2d3f55 !important;
  color: #e2e8f0 !important;
}
[data-bs-theme=dark] .dt-container .dt-info, [data-bs-theme=dark] .dt-container .dataTables_info, [data-bs-theme=dark] .dataTables_wrapper .dt-info, [data-bs-theme=dark] .dataTables_wrapper .dataTables_info, body.dark-theme .dt-container .dt-info, body.dark-theme .dt-container .dataTables_info, body.dark-theme .dataTables_wrapper .dt-info, body.dark-theme .dataTables_wrapper .dataTables_info {
  color: #64748b;
}
[data-bs-theme=dark] .dt-container .dt-paging .dt-paging-button, [data-bs-theme=dark] .dt-container .dataTables_paginate .paginate_button, [data-bs-theme=dark] .dataTables_wrapper .dt-paging .dt-paging-button, [data-bs-theme=dark] .dataTables_wrapper .dataTables_paginate .paginate_button, body.dark-theme .dt-container .dt-paging .dt-paging-button, body.dark-theme .dt-container .dataTables_paginate .paginate_button, body.dark-theme .dataTables_wrapper .dt-paging .dt-paging-button, body.dark-theme .dataTables_wrapper .dataTables_paginate .paginate_button {
  background-color: #1a2d40;
  border-color: #2d3f55;
  color: #94a3b8 !important;
}
[data-bs-theme=dark] .dt-container .dt-paging .dt-paging-button:hover, [data-bs-theme=dark] .dt-container .dataTables_paginate .paginate_button:hover, [data-bs-theme=dark] .dataTables_wrapper .dt-paging .dt-paging-button:hover, [data-bs-theme=dark] .dataTables_wrapper .dataTables_paginate .paginate_button:hover, body.dark-theme .dt-container .dt-paging .dt-paging-button:hover, body.dark-theme .dt-container .dataTables_paginate .paginate_button:hover, body.dark-theme .dataTables_wrapper .dt-paging .dt-paging-button:hover, body.dark-theme .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #273449 !important;
  color: #e2e8f0 !important;
}
[data-bs-theme=dark] .dt-container .dt-paging .dt-paging-button.current, [data-bs-theme=dark] .dt-container .dataTables_paginate .paginate_button.current, [data-bs-theme=dark] .dataTables_wrapper .dt-paging .dt-paging-button.current, [data-bs-theme=dark] .dataTables_wrapper .dataTables_paginate .paginate_button.current, body.dark-theme .dt-container .dt-paging .dt-paging-button.current, body.dark-theme .dt-container .dataTables_paginate .paginate_button.current, body.dark-theme .dataTables_wrapper .dt-paging .dt-paging-button.current, body.dark-theme .dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: #16a34a !important;
  border-color: #16a34a !important;
  color: #fff !important;
}
[data-bs-theme=dark] .sm-search-box, body.dark-theme .sm-search-box {
  background-color: #1a2d40;
  border-color: #2d3f55;
}
[data-bs-theme=dark] .sm-search-box:focus-within, body.dark-theme .sm-search-box:focus-within {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}
[data-bs-theme=dark] .sm-search-input, body.dark-theme .sm-search-input {
  color: #e2e8f0;
}
[data-bs-theme=dark] .sm-search-input::placeholder, body.dark-theme .sm-search-input::placeholder {
  color: #475569;
}
[data-bs-theme=dark] .sm-scan-badge, body.dark-theme .sm-scan-badge {
  background-color: #273449;
}
[data-bs-theme=dark] .sm-scan-badge:hover, body.dark-theme .sm-scan-badge:hover {
  background-color: #16a34a;
}
[data-bs-theme=dark] .sm-card, body.dark-theme .sm-card {
  background-color: #1a2d40;
  border-color: #2d3f55;
  color: #e2e8f0;
}
[data-bs-theme=dark] .sm-card .sm-card-header, body.dark-theme .sm-card .sm-card-header {
  background-color: #162032;
  border-color: #2d3f55;
}
[data-bs-theme=dark] .sm-card .sm-card-header .sm-card-title, body.dark-theme .sm-card .sm-card-header .sm-card-title {
  color: #f8fafc;
}
[data-bs-theme=dark] .sm-stat-box, body.dark-theme .sm-stat-box {
  background-color: #1a2d40;
  border-color: #2d3f55;
}
[data-bs-theme=dark] .sm-stat-box .sm-stat-label, body.dark-theme .sm-stat-box .sm-stat-label {
  color: #94a3b8;
}
[data-bs-theme=dark] .sm-stat-box .sm-stat-value, body.dark-theme .sm-stat-box .sm-stat-value {
  color: #ffffff;
}
[data-bs-theme=dark] .sm-stat-box.primary-box, body.dark-theme .sm-stat-box.primary-box {
  background-color: #0f3822;
  border-color: #198754;
}
[data-bs-theme=dark] .sm-stat-box.primary-box .sm-stat-label, [data-bs-theme=dark] .sm-stat-box.primary-box .sm-stat-value, body.dark-theme .sm-stat-box.primary-box .sm-stat-label, body.dark-theme .sm-stat-box.primary-box .sm-stat-value {
  color: #a3cfbb;
}
[data-bs-theme=dark] .form-control-touch, [data-bs-theme=dark] .form-select-touch, body.dark-theme .form-control-touch, body.dark-theme .form-select-touch {
  background-color: #1a2736;
  border-color: #2a3b50;
  color: #ffffff;
}
[data-bs-theme=dark] .form-control-touch:focus, [data-bs-theme=dark] .form-select-touch:focus, body.dark-theme .form-control-touch:focus, body.dark-theme .form-select-touch:focus {
  border-color: #20c997;
  background-color: #1e2d3e;
}
[data-bs-theme=dark] .form-control-touch::placeholder, [data-bs-theme=dark] .form-select-touch::placeholder, body.dark-theme .form-control-touch::placeholder, body.dark-theme .form-select-touch::placeholder {
  color: #64748b;
}
[data-bs-theme=dark] .sm-cart-panel, body.dark-theme .sm-cart-panel {
  background-color: #1a2d40;
  border-color: #20c997;
}
[data-bs-theme=dark] .sm-cart-panel .sm-cart-items-list .sm-cart-item, body.dark-theme .sm-cart-panel .sm-cart-items-list .sm-cart-item {
  border-bottom-color: #2d3f55;
}
[data-bs-theme=dark] .sm-cart-panel .sm-cart-items-list .sm-cart-item .sm-cart-item-title, body.dark-theme .sm-cart-panel .sm-cart-items-list .sm-cart-item .sm-cart-item-title {
  color: #f8fafc;
}
[data-bs-theme=dark] .sm-cart-panel .sm-cart-items-list .sm-cart-item .sm-cart-item-total, body.dark-theme .sm-cart-panel .sm-cart-items-list .sm-cart-item .sm-cart-item-total {
  color: #20c997;
}
[data-bs-theme=dark] .sm-cart-panel .sm-cart-total-box, body.dark-theme .sm-cart-panel .sm-cart-total-box {
  background-color: #162032;
  border-top-color: #20c997;
}
[data-bs-theme=dark] .sm-cart-panel .sm-cart-total-box .sm-total-label, body.dark-theme .sm-cart-panel .sm-cart-total-box .sm-total-label {
  color: #94a3b8;
}
[data-bs-theme=dark] .sm-cart-panel .sm-cart-total-box .sm-total-amount, body.dark-theme .sm-cart-panel .sm-cart-total-box .sm-total-amount {
  color: #20c997;
}
[data-bs-theme=dark] .sm-product-card, body.dark-theme .sm-product-card {
  background-color: #1a2d40;
  border-color: #2d3f55;
}
[data-bs-theme=dark] .sm-product-card:hover, body.dark-theme .sm-product-card:hover {
  border-color: #20c997;
}
[data-bs-theme=dark] .sm-product-card .sm-product-img, body.dark-theme .sm-product-card .sm-product-img {
  background-color: #273449;
}
[data-bs-theme=dark] .sm-product-card .sm-product-thumb, body.dark-theme .sm-product-card .sm-product-thumb {
  background-color: #273449;
}
[data-bs-theme=dark] .sm-product-card .sm-product-icon-box, body.dark-theme .sm-product-card .sm-product-icon-box {
  background-color: #273449;
  color: #94a3b8;
}
[data-bs-theme=dark] .sm-product-card .sm-product-name, body.dark-theme .sm-product-card .sm-product-name {
  color: #f8fafc;
}
[data-bs-theme=dark] .sm-product-card .sm-product-price, body.dark-theme .sm-product-card .sm-product-price {
  color: #20c997;
}
[data-bs-theme=dark] .btn-category, body.dark-theme .btn-category {
  background-color: #273449;
  border-color: #2d3f55;
  color: #cbd5e1;
}
[data-bs-theme=dark] .btn-category:hover, [data-bs-theme=dark] .btn-category.active, body.dark-theme .btn-category:hover, body.dark-theme .btn-category.active {
  background-color: #20c997;
  color: #000000;
  border-color: #20c997;
}
[data-bs-theme=dark] .modal-touch .modal-content, body.dark-theme .modal-touch .modal-content {
  background-color: #1a2d40;
  border-color: #20c997;
  color: #e2e8f0;
}
[data-bs-theme=dark] .modal-touch .modal-footer, body.dark-theme .modal-touch .modal-footer {
  background-color: #162032;
  border-top-color: #2d3f55;
}
[data-bs-theme=dark] hr, body.dark-theme hr {
  border-color: #2d3f55;
}
[data-bs-theme=dark] .list-group-item, body.dark-theme .list-group-item {
  background-color: #1a2d40 !important;
  border-color: #2d3f55 !important;
  color: #e2e8f0 !important;
}
[data-bs-theme=dark] code, body.dark-theme code {
  background-color: #273449;
  color: #f472b6;
}
[data-bs-theme=dark] .sm-command-card, body.dark-theme .sm-command-card {
  background-color: #1a2d40 !important;
  border-color: #2d3f55 !important;
  color: #cbd5e1 !important;
}
[data-bs-theme=dark] .sm-command-card span.text-dark, [data-bs-theme=dark] .sm-command-card .fw-bold, body.dark-theme .sm-command-card span.text-dark, body.dark-theme .sm-command-card .fw-bold {
  color: #e2e8f0 !important;
}
[data-bs-theme=dark] .sm-command-card:hover, body.dark-theme .sm-command-card:hover {
  background-color: #273449 !important;
  border-color: #16a34a !important;
}
[data-bs-theme=dark] .sm-command-card .sm-kbd-badge, body.dark-theme .sm-command-card .sm-kbd-badge {
  background-color: #162032 !important;
  color: #94a3b8 !important;
  border-color: #2d3f55 !important;
}

.unValid {
  font-weight: bold;
  color: #dc2626;
}

/*# sourceMappingURL=style.css.map */
