:root {
  --bg: #f7f8f5;
  --surface: #ffffff;
  --surface-2: #eef4f0;
  --text: #1f2a2a;
  --muted: #67736f;
  --line: #dce4df;
  --primary: #1f7a72;
  --primary-dark: #155d57;
  --accent: #d95745;
  --amber: #c98b1e;
  --green: #2f8a4b;
  --ink-soft: #304441;
  --shadow: 0 10px 28px rgba(31, 42, 42, 0.08);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a.ghost-button {
  text-decoration: none;
}

.app-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 18px;
  min-width: 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 8px;
  background: #203b3a;
  color: #fff;
  font-weight: 800;
}

.brand h1,
.section-heading h2 {
  margin: 0;
  letter-spacing: 0;
}

.brand h1 {
  font-size: 24px;
  line-height: 1.2;
}

.brand p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.topbar-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.sync-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid #d4ded8;
  border-radius: 8px;
  background: #f7fbf9;
  color: var(--muted);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.sync-badge.online {
  border-color: #b9dec9;
  background: #edf8f1;
  color: #20743d;
}

.sync-badge.pending {
  border-color: #edd59d;
  background: #fff8e8;
  color: #8a5a00;
}

.sync-badge.error {
  border-color: #efc9c3;
  background: #fff3f1;
  color: #9f3326;
}

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

.metrics article {
  min-height: 82px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.metrics span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.metrics strong {
  display: block;
  margin-top: 7px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0;
}

.view-tabs,
.station-tabs,
.category-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  max-width: 100%;
  scrollbar-width: thin;
}

.view-tabs {
  margin: 16px 0;
}

.tab,
.chip,
.option-button,
.ghost-button,
.danger-button,
.primary-button,
.small-button,
.status-button,
.qty-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  white-space: nowrap;
}

.tab,
.chip {
  padding: 0 14px;
}

.tab.active,
.chip.active,
.station-tab.active {
  border-color: var(--primary);
  background: #e3f3ef;
  color: var(--primary-dark);
  font-weight: 700;
}

.view {
  display: none;
  min-width: 0;
}

.view.active {
  display: block;
}

.order-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 16px;
  align-items: start;
  min-width: 0;
}

.menu-panel,
.cart-panel,
.ticket,
.order-summary,
.ready-ticket {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.menu-panel {
  padding: 14px;
  min-width: 0;
}

.cart-panel {
  position: sticky;
  top: 12px;
  overflow: hidden;
  min-width: 0;
}

.panel-toolbar {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(160px, 240px);
  gap: 10px;
  margin-bottom: 12px;
  min-width: 0;
}

.field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

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

.field input,
.field select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  padding: 0 12px;
  outline-color: var(--primary);
}

.category-strip {
  margin-bottom: 14px;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 10px;
}

.menu-card {
  display: grid;
  gap: 10px;
  min-height: 146px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-card header {
  display: grid;
  gap: 5px;
}

.menu-name {
  font-weight: 800;
  line-height: 1.3;
}

.menu-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.station-pill,
.status-pill,
.time-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 2px 8px;
  background: var(--surface-2);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.price {
  color: var(--primary-dark);
  font-weight: 800;
}

.card-actions,
.variant-actions,
.item-actions,
.ticket-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.option-button {
  flex: 1 1 94px;
  padding: 0 10px;
  color: var(--primary-dark);
  border-color: #b8ddd4;
  background: #f2fbf8;
  font-weight: 700;
}

.primary-button,
.small-button.primary,
.status-button.next {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.primary-button {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
}

.ghost-button,
.danger-button,
.small-button,
.status-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
}

.danger-button,
.small-button.danger {
  border-color: #efc9c3;
  background: #fff3f1;
  color: #9f3326;
  font-weight: 700;
}

.cart-header,
.cart-footer {
  padding: 14px;
  background: #fbfcfb;
}

.cart-header {
  display: grid;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}

.cart-list {
  display: grid;
  gap: 0;
  max-height: calc(100vh - 390px);
  min-height: 180px;
  overflow: auto;
}

.cart-item,
.order-item {
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.cart-item:last-child,
.order-item:last-child {
  border-bottom: 0;
}

.order-item.batch-heading {
  background: #f5faf7;
}

.discount-panel {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid #cfe1db;
  border-radius: 8px;
  background: #f8fcfa;
}

.discount-panel .field input {
  max-width: 160px;
}

.discount-lines {
  display: grid;
  gap: 8px;
}

.discount-lines div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.discount-lines span {
  color: var(--muted);
  font-size: 13px;
}

.discount-lines strong {
  font-size: 16px;
}

.discount-lines .net {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.discount-lines .net strong {
  color: var(--primary-dark);
  font-size: 22px;
}

.extra-charge-panel {
  background: #fffdf7;
}

.extra-charge-heading,
.extra-charge-row,
.extra-charge-form {
  display: grid;
  gap: 10px;
}

.extra-charge-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.extra-charge-heading > strong {
  color: var(--primary-dark);
  font-size: 20px;
}

.extra-charge-list {
  display: grid;
  gap: 8px;
}

.extra-charge-row {
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid #eadcbf;
  border-radius: 8px;
  background: #fff8e8;
}

.extra-charge-row span {
  overflow-wrap: anywhere;
  font-weight: 800;
}

.extra-charge-form {
  grid-template-columns: minmax(150px, 1fr) minmax(100px, 130px) auto;
}

.extra-charge-form input {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
  color: var(--text);
}

.cart-item-main,
.order-item-main,
.ready-item-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.cart-item-main > div,
.order-item-main > div,
.ready-item-main > div {
  min-width: 0;
}

.cart-item strong,
.order-item strong,
.ready-item-main strong {
  color: #102624;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.subtle {
  color: var(--muted);
  font-size: 13px;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 34px 38px 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.qty-button {
  min-height: 34px;
  border: 0;
  border-radius: 0;
  background: #f4f6f4;
  font-weight: 900;
}

.qty-value {
  text-align: center;
  font-weight: 800;
}

.line-note {
  width: 100%;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
}

.cart-footer {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
}

.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 18px;
}

.total-row strong {
  font-size: 24px;
  color: var(--primary-dark);
}

.station-tabs {
  margin-bottom: 14px;
}

.station-tab {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 0 14px;
}

.station-tab small {
  display: inline-flex;
  min-width: 22px;
  min-height: 22px;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  border-radius: 999px;
  background: #e8ece9;
  color: var(--ink-soft);
  font-size: 12px;
}

.kitchen-board,
.ready-board,
.orders-board {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 12px;
}

.ticket,
.ready-ticket,
.order-summary,
.bill-card {
  overflow: hidden;
}

.ticket-header,
.ready-header,
.order-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfb;
}

.ticket-title {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ticket-title strong {
  font-size: 18px;
}

.ticket-body,
.ready-body,
.order-summary-body {
  display: grid;
}

.status-pill.queued {
  background: #fff3d9;
  color: #885c11;
}

.status-pill.cooking {
  background: #ffe8e3;
  color: #a93b2c;
}

.status-pill.done {
  background: #e2f5e8;
  color: #20743d;
}

.status-pill.served {
  background: #e9edf4;
  color: #4a5666;
}

.status-pill.paid {
  background: #e7f0ff;
  color: #2455a6;
}

.status-pill.canceled {
  background: #fff0ee;
  color: #9f3326;
}

.time-pill.overdue {
  background: #d95745;
  color: #fff;
}

.status-button {
  min-height: 36px;
  font-weight: 700;
}

.status-button.done {
  border-color: #bfe1c9;
  background: #eef9f1;
  color: #20743d;
}

.status-button.back {
  background: #f4f6f4;
}

.status-button.cancel {
  border-color: #efc9c3;
  background: #fff3f1;
  color: #9f3326;
}

.small-button.pay {
  border-color: #f0d08d;
  background: #fff8e8;
  color: #8a5a00;
  font-weight: 800;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 2px 0 14px;
}

.section-heading h2 {
  font-size: 22px;
}

.section-heading span {
  color: var(--muted);
  font-weight: 700;
}

.orders-heading-actions,
.bill-heading-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.date-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.date-filter input {
  min-height: 40px;
  width: 160px;
  border: 1px solid #cfdad4;
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  padding: 0 10px;
  font-weight: 700;
}

.bill-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.sync-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.3fr);
  gap: 12px;
  align-items: end;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.sync-panel h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.sync-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.sync-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  grid-column: 1 / -1;
}

.sync-status {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.sync-status.online {
  color: #20743d;
}

.sync-status.pending {
  color: #8a5a00;
}

.sync-status.error {
  color: #9f3326;
}

.custom-item-panel,
.menu-admin-panel {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.custom-item-heading,
.menu-admin-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.custom-item-heading h3,
.menu-admin-header h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.custom-item-heading span,
.menu-admin-header p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.check-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.check-row input {
  width: 18px;
  height: 18px;
}

.menu-admin-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.menu-status-text {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.menu-status-text.inactive {
  color: #9f3326;
}

.menu-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bill-summary article {
  min-height: 92px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.bill-summary span,
.bill-summary small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.bill-summary strong {
  display: block;
  margin: 6px 0 2px;
  font-size: 28px;
  line-height: 1;
  color: var(--primary-dark);
}

.bill-board {
  display: grid;
  gap: 18px;
}

.bill-date-group {
  display: grid;
  gap: 10px;
}

.bill-date-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bill-date-header h3 {
  margin: 0;
  font-size: 18px;
}

.bill-date-header span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.bill-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 12px;
}

.bill-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.bill-card-header,
.bill-card-body,
.bill-detail-heading,
.bill-detail-total,
.bill-facts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bill-card-header {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfb;
}

.bill-card-body {
  padding: 12px 14px;
}

.bill-facts {
  min-width: 0;
  flex: 1;
}

.bill-facts span {
  color: var(--muted);
}

.bill-facts strong {
  color: var(--primary-dark);
  font-size: 20px;
}

.bill-detail {
  display: grid;
  gap: 12px;
  padding: 0 14px 14px;
}

.bill-detail-batch {
  display: grid;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.bill-detail-heading span {
  color: var(--muted);
  font-size: 13px;
}

.bill-detail-table {
  width: 100%;
  border-collapse: collapse;
}

.bill-detail-table td {
  padding: 7px 0;
  border-bottom: 1px solid #eef2ef;
  vertical-align: top;
  font-size: 14px;
}

.bill-detail-table td:nth-child(2) {
  color: var(--muted);
}

.bill-detail-table td:last-child {
  width: 78px;
  text-align: right;
  font-weight: 800;
}

.bill-detail-table tr.canceled-line td {
  color: #9f3326;
  text-decoration: line-through;
}

.bill-detail-total {
  padding-top: 12px;
  border-top: 2px solid var(--line);
  font-size: 18px;
}

.bill-detail-total strong {
  color: var(--primary-dark);
}

.bill-print-area {
  display: none;
}

.print-bill {
  color: #111;
  background: #fff;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

.print-bill-header,
.print-bill-footer {
  display: grid;
  gap: 4px;
  text-align: center;
}

.print-bill-header h1 {
  margin: 0;
  font-size: 20px;
}

.print-bill-header strong {
  font-size: 16px;
}

.print-bill-header small,
.print-bill-note,
.print-bill-footer {
  color: #555;
  font-size: 12px;
}

.print-bill-lines {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.print-bill-batch h2 {
  margin: 0 0 6px;
  font-size: 13px;
}

.print-bill-table {
  width: 100%;
  border-collapse: collapse;
}

.print-bill-table td {
  padding: 4px 0;
  border-bottom: 1px dotted #bbb;
  vertical-align: top;
  font-size: 12px;
}

.print-bill-table td:nth-child(2) {
  width: 34px;
  text-align: center;
}

.print-bill-table td:last-child {
  width: 60px;
  text-align: right;
  font-weight: 800;
}

.print-bill-table small {
  display: block;
  color: #555;
  font-size: 11px;
}

.print-bill-note {
  margin-top: 10px;
}

.print-bill-totals {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 2px solid #111;
}

.print-bill-totals div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

.print-bill-totals .net {
  font-size: 18px;
  font-weight: 900;
}

.print-bill-footer {
  margin-top: 16px;
}

.menu-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.menu-table th,
.menu-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.menu-table th {
  background: #eef4f0;
  color: var(--ink-soft);
  font-size: 13px;
}

.menu-table tr:last-child td {
  border-bottom: 0;
}

.empty-state {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px dashed #c8d3cd;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.6);
}

.empty-state span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #c8d3cd;
  font-size: 24px;
}

.empty-state p {
  margin: 0;
  text-align: center;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: min(380px, calc(100vw - 36px));
  padding: 12px 14px;
  border-radius: 8px;
  background: #203b3a;
  color: #fff;
  box-shadow: 0 14px 34px rgba(31, 42, 42, 0.22);
  z-index: 10;
}

@media (max-width: 980px) {
  .order-grid {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    position: static;
  }

  .cart-list {
    max-height: none;
  }
}

@media (max-width: 720px) {
  .app-shell {
    padding: 12px;
  }

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

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

  .orders-heading-actions,
  .bill-heading-actions {
    width: 100%;
    justify-content: space-between;
  }

  .extra-charge-heading,
  .extra-charge-row,
  .extra-charge-form {
    grid-template-columns: 1fr;
  }

  .topbar-actions,
  .topbar-actions button,
  .sync-badge {
    width: 100%;
  }

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

  .panel-toolbar {
    grid-template-columns: 1fr;
  }

  .menu-list,
  .kitchen-board,
  .ready-board,
  .orders-board,
  .bill-summary,
  .sync-panel,
  .custom-item-grid,
  .menu-form-grid,
  .bill-list {
    grid-template-columns: 1fr;
  }

  .custom-item-heading,
  .menu-admin-header {
    flex-direction: column;
  }

  .bill-card-header,
  .bill-card-body,
  .bill-detail-heading,
  .bill-detail-total,
  .bill-facts {
    align-items: flex-start;
    flex-direction: column;
  }

  .bill-detail-table td {
    display: block;
    width: 100%;
    border-bottom: 0;
    padding: 4px 0;
  }

  .bill-detail-table tr {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eef2ef;
  }

  .bill-detail-table td:last-child {
    width: 100%;
    text-align: left;
  }
}

@media print {
  body {
    background: #fff;
  }

  .topbar,
  .metrics,
  .view-tabs,
  #view-order,
  #view-kitchen,
  #view-orders,
  #view-bills,
  #view-menu,
  .ticket-actions,
  .topbar-actions {
    display: none !important;
  }

  #view-serving {
    display: block !important;
  }

  .ready-board {
    grid-template-columns: 1fr;
  }

  .ready-ticket {
    box-shadow: none;
    break-inside: avoid;
  }

  body.printing-bill .app-shell {
    display: none !important;
  }

  body.printing-bill .bill-print-area {
    display: block !important;
  }

  body.printing-bill .print-bill {
    width: 80mm;
    margin: 0 auto;
    padding: 4mm;
    box-shadow: none;
  }

  body.printing-bill #view-serving {
    display: none !important;
  }
}
