:root {
  --bg: #eef4f3;
  --surface: #ffffff;
  --surface-soft: #f7fbfa;
  --line: #d8e6e2;
  --line-strong: #b9d4ce;
  --text: #16312c;
  --muted: #64817b;
  --primary: #24b78d;
  --primary-dark: #16906e;
  --sidebar: #11312d;
  --danger: #dd4f5f;
  --warning: #f0b429;
  --shadow: 0 24px 60px rgba(17, 49, 45, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", Tahoma, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(36, 183, 141, 0.16), transparent 24%),
    linear-gradient(180deg, #f7fbfa 0%, #edf5f3 100%);
}

.app-loading {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f5fbff 0%, #eef6f4 100%);
  z-index: 9999;
}

.app-loading-card {
  min-width: 260px;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 50px rgba(22, 49, 44, 0.08);
  display: grid;
  gap: 6px;
  text-align: center;
}

.app-loading-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

button {
  border: none;
  border-radius: 14px;
  padding: 11px 16px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary), #3ecfa8);
  color: #fff;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(36, 183, 141, 0.22);
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
  box-shadow: none;
  transform: none;
}

.btn-soft {
  background: rgba(36, 183, 141, 0.12);
  color: var(--primary-dark);
  box-shadow: none;
}

.btn-soft:hover {
  background: rgba(36, 183, 141, 0.18);
  box-shadow: none;
}

.icon-btn {
  padding: 9px 12px;
  border-radius: 12px;
  background: rgba(17, 49, 45, 0.08);
  color: var(--text);
  box-shadow: none;
}

.icon-btn.warning {
  background: rgba(240, 180, 41, 0.16);
  color: #9c6a00;
}

.icon-btn.danger {
  background: rgba(221, 79, 95, 0.14);
  color: #b22f42;
}

.icon-btn.success {
  background: rgba(43, 167, 97, 0.16);
  color: #1b7a45;
}

.field textarea {
  resize: vertical;
  min-height: 86px;
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 1.3fr) minmax(320px, 0.9fr);
  gap: 24px;
  padding: 28px;
}

.auth-panel {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
}

.auth-intro {
  padding: 40px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 22%),
    linear-gradient(135deg, #1ab187, #0f5442);
  color: #f8fffd;
}

.brand-mark {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
}

.brand-mark.small {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-size: 1.1rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.auth-brand-logo {
  width: 110px;
  height: 110px;
}

.sidebar-brand-logo {
  width: 64px;
  height: 64px;
}

.brand-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.eyebrow {
  margin: 18px 0 8px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.auth-intro h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.auth-lead {
  max-width: 640px;
  color: rgba(248, 255, 253, 0.88);
  font-size: 1rem;
}

.auth-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.auth-point {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.auth-card {
  padding: 28px;
  align-self: center;
}

.auth-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.auth-tab {
  flex: 1;
  background: #ecf5f2;
  color: var(--muted);
  box-shadow: none;
}

.auth-tab.active {
  background: linear-gradient(135deg, var(--primary), #39d3aa);
  color: #fff;
}

.auth-form {
  display: grid;
  gap: 16px;
}

.auth-form label,
.field label,
.inline-field span {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--muted);
  font-size: 0.92rem;
}

.auth-form input,
.field input,
.field select,
.field textarea,
.toolbar input,
.stock-inline-input,
.inline-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--text);
}

.auth-form input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus,
.toolbar input:focus,
.stock-inline-input:focus,
.inline-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(36, 183, 141, 0.16);
}

.auth-alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(221, 79, 95, 0.12);
  color: #b22f42;
}

.helper-text {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.sidebar {
  height: 100vh;
  padding: 24px 18px;
  background:
    radial-gradient(circle at top left, rgba(36, 183, 141, 0.24), transparent 30%),
    linear-gradient(180deg, #153d37 0%, var(--sidebar) 100%);
  color: #d8f5ec;
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(216, 245, 236, 0.35) transparent;
}

.sidebar::-webkit-scrollbar {
  width: 10px;
}

.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(216, 245, 236, 0.28);
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sidebar-brand strong,
.user-chip strong,
.role-card strong {
  display: block;
}

.sidebar-brand span,
.user-chip span {
  color: rgba(216, 245, 236, 0.75);
  font-size: 0.9rem;
}

.sidebar-nav {
  display: grid;
  gap: 10px;
}

.menu-btn {
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  color: #e9fff8;
  box-shadow: none;
}

.menu-btn.active,
.menu-btn:hover {
  background: linear-gradient(135deg, var(--primary), #34cfa7);
  color: #fff;
}

.menu-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.sidebar-foot {
  margin-top: auto;
}

.role-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.role-card p {
  margin: 10px 0 0;
  color: rgba(216, 245, 236, 0.82);
  font-size: 0.92rem;
}

.main-shell {
  height: 100vh;
  padding: 22px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #6d28d9 #efe8ff;
}

.main-shell::-webkit-scrollbar {
  width: 12px;
}

.main-shell::-webkit-scrollbar-track {
  background: #efe8ff;
  border-radius: 999px;
}

.main-shell::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #7c3aed, #5b21b6);
  border-radius: 999px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.topbar h2 {
  margin: 0;
  font-size: 1.8rem;
}

.topbar-user {
  display: flex;
  gap: 14px;
  align-items: center;
}

.user-chip {
  padding: 12px 16px;
  border-radius: 18px;
  background: #173b35;
  color: #f1fffb;
}

.section-grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(17, 49, 45, 0.08);
  overflow: hidden;
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px 0;
}

.card-head h2,
.card-head h3,
.modal-head h3 {
  margin: 0;
}

.card-subtitle {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.card-body {
  padding: 22px 24px 24px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(36, 183, 141, 0.12);
  color: var(--primary-dark);
  font-weight: 700;
  white-space: nowrap;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.field-action {
  display: flex;
  align-items: end;
  gap: 12px;
  flex-wrap: wrap;
}

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

.table-toolbar,
.toolbar,
.upload-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.toolbar-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-grid {
  display: grid;
  gap: 14px;
  margin: 18px 0;
  grid-template-columns: minmax(280px, 1fr) repeat(2, minmax(150px, 180px));
}

.field-date-small {
  max-width: 180px;
}

.nested-card {
  border: 1px solid var(--line);
  box-shadow: none;
}

.summary-grid,
.stats-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.summary-card,
.stat-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff, #f4fbf8);
}

.summary-card span,
.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.summary-card strong,
.stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.5rem;
  color: var(--text);
}

.sales-report-summary-table-wrap {
  margin-bottom: 18px;
}

.sales-report-summary-cards {
  margin-bottom: 14px;
}

.sales-report-summary-actions {
  display: flex;
  justify-content: flex-end;
  padding: 12px 12px 0;
}

.sales-report-summary-table tbody tr[draggable="true"] {
  cursor: move;
}

.sales-report-summary-table tbody tr.dragging {
  opacity: 0.55;
}

.sales-report-summary-table tbody tr.drag-over td {
  background: #eefaf5;
}

.sales-report-summary-table td:last-child,
.sales-report-summary-table th:last-child {
  width: 140px;
  text-align: center;
}

.inline-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.inline-field select {
  min-width: 76px;
}

.inline-note,
.toolbar-note,
.muted-text,
.list-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.panel-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff, #f4fbf8);
}

.list-title {
  font-weight: 700;
}

.table-wrap {
  overflow: auto;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.table-wrap.compact {
  margin-top: 14px;
}

table {
  width: 100%;
  min-width: 1080px;
  border-collapse: separate;
  border-spacing: 0;
}

th,
td {
  padding: 12px 10px;
  border-right: 1px solid #e4efec;
  border-bottom: 1px solid #e4efec;
  text-align: center;
  vertical-align: middle;
}

thead th {
  background: #edf7f4;
  color: #274742;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sortable-th {
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.sortable-th:hover {
  background: #e3f3ed;
}

.upload-col-header[draggable="true"] {
  cursor: grab;
}

.upload-col-header[draggable="true"]:active {
  cursor: grabbing;
}

tbody td {
  background: #fff;
}

tbody tr:nth-child(even) td {
  background: #fbfefd;
}

tbody tr:hover td {
  background: #f1fbf7;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.badge.success {
  background: rgba(36, 183, 141, 0.14);
  color: var(--primary-dark);
}

.badge.muted {
  background: rgba(100, 129, 123, 0.14);
  color: var(--muted);
}

.queue-qty-kirim-badge {
  margin-top: 8px;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.table-actions {
  display: inline-flex;
  gap: 8px;
}

#tabel-antrian-item .select2-container,
#queue_customer_key + .select2-container {
  min-width: 220px;
}

#tabel-antrian-item input {
  min-width: 96px;
}

.pagination {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.page-btn {
  background: #edf5f3;
  color: var(--text);
  box-shadow: none;
  min-width: 40px;
  padding: 10px 12px;
}

.page-btn.active {
  background: linear-gradient(135deg, var(--primary), #34cfa7);
  color: #fff;
}

.page-btn.page-nav {
  min-width: 96px;
}

.page-ellipsis {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-width: 28px;
  padding: 0 2px;
}

.text-button {
  padding: 0;
  border: none;
  background: transparent;
  color: var(--primary-dark);
  font-weight: 700;
  box-shadow: none;
}

.text-button:hover {
  transform: none;
  text-decoration: underline;
  box-shadow: none;
}

.permission-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.permission-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, #fff, #f4fbf8);
}

.permission-card span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stock-header span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
}

.sticky-col {
  position: sticky;
  left: 0;
  z-index: 2;
}

.name-col,
.price-col {
  background: #f6fcfa;
}

.name-col {
  min-width: 220px;
  text-align: left;
}

.price-col {
  min-width: 150px;
  left: 220px;
}

.stock-item-name {
  font-weight: 800;
}

.stock-item-meta {
  color: var(--muted);
  font-size: 0.84rem;
}

.editable-stock-cell {
  cursor: pointer;
}

.editable-stock-cell:hover {
  background: #eafaf4;
}

.editable-stock-cell.editing {
  padding: 6px;
  background: #eefbf7;
}

.editable-stock-cell.saving {
  background: #dff8ee;
}

.locked-cell,
.locked-cell:hover {
  background: #f5f6f7 !important;
  color: #9aa8a5;
  cursor: not-allowed;
}

.stock-sisa-cell.is-negative {
  color: #b22f42;
  font-weight: 800;
}

.stock-sisa-cell.is-zero {
  color: var(--muted);
}

.stock-sisa-cell.is-positive {
  color: var(--primary-dark);
  font-weight: 700;
}

.empty-state {
  text-align: center;
  color: var(--muted);
  font-style: italic;
}

.upload-result {
  min-height: 56px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 20px;
  border: 1px dashed var(--line-strong);
  background: #f7fbfa;
}

.upload-summary {
  color: var(--primary-dark);
  font-weight: 700;
}

.upload-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.monthly-chart {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.monthly-chart-item {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfefd 0%, #f4fbf8 100%);
}

.monthly-chart-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.monthly-chart-bars {
  display: grid;
  gap: 10px;
}

.monthly-chart-bar-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 72px;
  gap: 12px;
  align-items: center;
}

.monthly-chart-label,
.monthly-chart-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
}

.monthly-chart-track {
  position: relative;
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(17, 49, 45, 0.08);
}

.monthly-chart-fill {
  height: 100%;
  border-radius: 999px;
}

.monthly-chart-fill.orders {
  background: linear-gradient(135deg, var(--primary), #63ddb8);
}

.monthly-chart-fill.cancel {
  background: linear-gradient(135deg, #f48b8b, #dd4f5f);
}

.upload-code-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.1);
  color: #5b21b6;
  font-size: 0.92rem;
}

.upload-batch-list {
  margin-top: 18px;
}

.batch-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fbfefd;
  overflow: hidden;
}

.compact-head {
  padding-bottom: 16px;
}

.batch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.batch-row:first-of-type {
  border-top: none;
}

.queue-status-badge {
  min-width: 120px;
  justify-content: center;
}

.queue-status-open {
  background: #fff1c7;
  color: #8a5a00;
}

.queue-status-approve {
  background: #d9f7e8;
  color: #136a42;
}

.queue-status-ready {
  background: #dff2ff;
  color: #0d5b8c;
}

.queue-status-delivery {
  background: #efe3ff;
  color: #6b31a8;
}

.queue-status-done {
  background: #dbf8dc;
  color: #1f6f24;
}

.error-text {
  color: #b22f42;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 32, 29, 0.45);
  z-index: 10;
}

.modal-card {
  width: min(720px, 100%);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modal-card-wide {
  width: min(980px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 22px 24px 0;
}

#form-antrian-pesanan {
  padding: 20px 24px 24px;
  overflow-x: hidden;
}

#form-antrian-pesanan .table-wrap {
  margin-top: 10px;
}

#tabel-antrian-item {
  min-width: 0;
  table-layout: fixed;
}

#tabel-antrian-item th:nth-child(1),
#tabel-antrian-item td:nth-child(1) {
  width: 40%;
}

#tabel-antrian-item th:nth-child(2),
#tabel-antrian-item td:nth-child(2),
#tabel-antrian-item th:nth-child(3),
#tabel-antrian-item td:nth-child(3),
#tabel-antrian-item th:nth-child(4),
#tabel-antrian-item td:nth-child(4),
#tabel-antrian-item th:nth-child(5),
#tabel-antrian-item td:nth-child(5) {
  white-space: nowrap;
}

#tabel-antrian-item .queue-item-harga,
#tabel-antrian-item .queue-item-qty {
  text-align: right;
}

.queue-status-time {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.4;
}

.queue-swal-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(25, 85, 78, 0.12);
  text-align: left;
}

.queue-swal-item:last-child {
  border-bottom: 0;
}

.queue-swal-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.queue-swal-label span {
  color: var(--muted);
  font-size: 13px;
}

.queue-swal-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
}

.queue-swal-input-group span {
  color: var(--muted);
  font-size: 12px;
}

.queue-swal-input.swal2-input {
  width: 100%;
  margin: 0;
}

.select2-container--default .select2-selection--single {
  height: 48px;
  border-radius: 14px;
  border-color: var(--line-strong);
  display: flex;
  align-items: center;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 46px;
}

.select2-container .select2-selection--single .select2-selection__arrow {
  height: 46px;
}

@media (max-width: 1100px) {
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    gap: 16px;
  }

  .sidebar-nav {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }
}

@media (max-width: 760px) {
  .auth-shell,
  .main-shell {
    padding: 14px;
  }

  .topbar,
  .card-head,
  .card-body,
  .modal-head {
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-user,
  .toolbar,
  .upload-row,
  .inline-field,
  .upload-summary-row,
  .batch-row {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .pagination {
    justify-content: flex-start;
  }

  #form-antrian-pesanan {
    padding: 16px;
  }

  .modal-card-wide {
    width: 100%;
    max-height: calc(100vh - 20px);
  }

  .modal-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .queue-swal-item {
    grid-template-columns: 1fr;
  }

  .monthly-chart-bar-row {
    grid-template-columns: 1fr;
  }

  .name-col {
    min-width: 180px;
  }

  .price-col {
    left: 180px;
  }
}
