.admin-body {
  background: var(--cream);
  color: var(--ink);
}

.admin-main {
  padding-bottom: 40px;
}

.admin-body .topbar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.admin-body .brand span,
.admin-body .brand strong,
.admin-body .topbar__note {
  color: var(--ink);
}

.admin-main .btn-ghost {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
}

.admin-main .btn-ghost:hover {
  background: rgba(215, 180, 105, 0.2);
  border-color: rgba(215, 180, 105, 0.58);
}

.admin-section-compact {
  padding-bottom: 24px;
  padding-top: 0;
}

.admin-login-wrap {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.admin-login-bg .admin-login-wrap {
  background:
    linear-gradient(120deg, rgba(23, 22, 21, 0.72), rgba(23, 22, 21, 0.46)),
    url("../Imagenes/Cover/Cover.jpg") center / cover no-repeat;
  position: relative;
}

.admin-login-bg .admin-login-wrap::before {
  content: "";
  inset: 0;
  position: absolute;
}

.admin-login-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  max-width: 460px;
  padding: 26px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.admin-login-card h1 {
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.admin-login-card p {
  color: rgba(23, 22, 21, 0.7);
  margin-bottom: 6px;
}

.admin-login-card label {
  display: grid;
  font-size: 0.9rem;
  font-weight: 600;
  gap: 6px;
}

.admin-login-card input {
  border: 1px solid rgba(36, 33, 31, 0.22);
  border-radius: 8px;
  min-height: 42px;
  padding: 0 12px;
}

.admin-alert {
  border-radius: 8px;
  font-size: 0.9rem;
  padding: 10px 12px;
}

.admin-alert--error {
  background: rgba(178, 36, 36, 0.12);
  border: 1px solid rgba(178, 36, 36, 0.35);
  color: #7d1a1a;
}

.admin-alert--success {
  background: rgba(57, 114, 43, 0.12);
  border: 1px solid rgba(57, 114, 43, 0.35);
  color: #254e1d;
}

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

.admin-summary-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 4px;
  padding: 16px;
}

.admin-summary-grid span {
  color: rgba(23, 22, 21, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-summary-grid strong {
  font-size: 1.5rem;
}

.admin-tabs {
  align-content: start;
  align-items: stretch;
  display: grid;
  gap: 10px;
  grid-auto-rows: min-content;
}

.admin-workspace {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: 200px minmax(0, 1fr);
}

.admin-sidebar {
  align-content: start;
  align-items: stretch;
  align-self: start;
  display: grid;
  gap: 14px;
  position: sticky;
  top: 84px;
}

.admin-sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-sidebar-actions .btn-primary,
.admin-sidebar-actions .btn-ghost {
  height: 38px;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
}

.admin-content {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.admin-tab {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  display: flex;
  font-size: 0.9rem;
  font-weight: 720;
  height: 42px;
  justify-content: flex-start;
  min-height: 42px;
  padding: 0 12px;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.admin-tab:hover {
  transform: translateY(-1px);
}

.admin-tab.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.admin-panel {
  margin: 0;
}

.admin-card--full {
  width: 100%;
}

.admin-card--form {
  position: relative;
}

.admin-mode-banner {
  background: rgba(215, 180, 105, 0.2);
  border: 1px solid rgba(215, 180, 105, 0.52);
  border-radius: 8px;
  font-size: 0.84rem;
  margin-bottom: 12px;
  padding: 10px 12px;
}

.admin-mode-banner strong {
  margin-right: 4px;
}

.admin-mode-banner--create {
  background: rgba(56, 97, 44, 0.1);
  border-color: rgba(56, 97, 44, 0.34);
  color: rgba(31, 62, 24, 0.94);
}

.admin-editing-product #form-producto,
.admin-editing-review #form-resena {
  border-color: rgba(215, 180, 105, 0.8);
  box-shadow: 0 16px 40px rgba(23, 22, 21, 0.14);
}

.admin-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(320px, 380px) minmax(0, 1fr);
}

.admin-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
}

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

.admin-card__head h2 {
  font-size: 1.2rem;
  margin: 0;
}

.admin-form-grid {
  display: grid;
  gap: 10px;
}

.admin-form-grid--wide {
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-form-grid--wide .admin-check,
.admin-form-grid--wide .admin-current-image,
.admin-form-grid--wide .admin-form-submit,
.admin-form-grid--wide textarea {
  grid-column: 1 / -1;
}

.admin-inline-category {
  align-items: end;
  background: rgba(49, 85, 31, 0.08);
  border: 1px solid rgba(49, 85, 31, 0.28);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr auto;
  margin-bottom: 14px;
  padding: 10px;
}

.admin-inline-category label {
  display: grid;
  font-size: 0.82rem;
  font-weight: 650;
  gap: 6px;
}

.admin-inline-category input {
  border: 1px solid rgba(36, 33, 31, 0.22);
  border-radius: 8px;
  min-height: 36px;
  padding: 0 10px;
}

.admin-form-grid label {
  display: grid;
  font-size: 0.88rem;
  font-weight: 600;
  gap: 6px;
}

.admin-form-grid label small {
  color: rgba(23, 22, 21, 0.66);
  font-size: 0.76rem;
  font-weight: 500;
}

.admin-form-grid input,
.admin-form-grid select {
  border: 1px solid rgba(36, 33, 31, 0.22);
  border-radius: 8px;
  min-height: 40px;
  padding: 0 10px;
}

.admin-form-grid textarea {
  border: 1px solid rgba(36, 33, 31, 0.22);
  border-radius: 8px;
  font-family: inherit;
  min-height: 110px;
  padding: 10px;
  resize: vertical;
}

.admin-check {
  align-items: center;
  display: flex !important;
  gap: 8px;
}

.admin-check input {
  min-height: 0;
}

.admin-current-image {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 10px;
}

.admin-current-image span {
  color: rgba(23, 22, 21, 0.7);
  font-size: 0.8rem;
}

.admin-current-image img {
  background: rgba(23, 22, 21, 0.04);
  border-radius: 8px;
  height: 280px;
  max-width: 220px;
  object-fit: contain;
  width: 100%;
}

.admin-current-image small {
  color: rgba(23, 22, 21, 0.72);
  font-size: 0.76rem;
  text-align: center;
}

.admin-form-submit {
  margin-top: 6px;
}

.admin-filters {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.admin-filters input,
.admin-filters select {
  border: 1px solid rgba(36, 33, 31, 0.22);
  border-radius: 8px;
  min-height: 38px;
  padding: 0 10px;
}

.admin-filters input {
  flex: 1;
}

.admin-filters .btn-ghost {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  font-weight: 800;
}

.admin-filters .btn-ghost:hover {
  background: #cfa34f;
  border-color: #cfa34f;
}

.admin-head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-import-form {
  align-items: end;
  background: rgba(215, 180, 105, 0.12);
  border: 1px dashed rgba(215, 180, 105, 0.46);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 12px;
  padding: 10px;
}

.admin-import-form label {
  display: grid;
  font-size: 0.84rem;
  font-weight: 650;
  gap: 6px;
}

.admin-import-form input[type="file"] {
  border: 1px solid rgba(36, 33, 31, 0.22);
  border-radius: 8px;
  min-height: 38px;
  padding: 5px 8px;
}

.admin-import-form select,
.admin-import-form input[type="number"],
.admin-import-form input[type="text"] {
  border: 1px solid rgba(36, 33, 31, 0.22);
  border-radius: 8px;
  min-height: 38px;
  padding: 0 10px;
}

.admin-import-form--outflow {
  align-items: end;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 0.7fr) minmax(0, 1.2fr) auto;
}

.admin-import-form--outflow label {
  min-width: 0;
}

.admin-import-form--outflow select {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--paper);
  background-image: linear-gradient(45deg, transparent 50%, rgba(23, 22, 21, 0.7) 50%),
    linear-gradient(135deg, rgba(23, 22, 21, 0.7) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  font-size: 0.9rem;
  min-height: 46px;
  padding: 0 34px 0 12px;
  width: 100%;
}

.admin-import-form--outflow input[type="number"],
.admin-import-form--outflow input[type="text"] {
  width: 100%;
}

@media (max-width: 1320px) {
  .admin-import-form--outflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-import-form--outflow button {
    width: 100%;
  }
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  border-collapse: collapse;
  min-width: 100%;
  width: 100%;
}

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

.admin-table th {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-table--products {
  min-width: 820px;
  table-layout: fixed;
}

.admin-table--products th,
.admin-table--products td {
  font-size: 0.78rem;
  overflow: hidden;
  padding: 7px 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-table--products th {
  line-height: 1.2;
  overflow: hidden;
  text-overflow: clip;
}

.admin-table--products th:nth-child(1),
.admin-table--products td:nth-child(1) {
  width: 18%;
}

.admin-table--products th:nth-child(2),
.admin-table--products td:nth-child(2) {
  width: 10%;
}

.admin-table--products th:nth-child(3),
.admin-table--products td:nth-child(3) {
  width: 8%;
}

.admin-table--products th:nth-child(4),
.admin-table--products td:nth-child(4) {
  width: 4%;
}

.admin-table--products th:nth-child(5),
.admin-table--products td:nth-child(5) {
  width: 8%;
}

.admin-table--products th:nth-child(6),
.admin-table--products td:nth-child(6) {
  width: 6%;
}

.admin-table--products th:nth-child(7),
.admin-table--products td:nth-child(7) {
  width: 9%;
}

.admin-table--products th:nth-child(8),
.admin-table--products td:nth-child(8) {
  width: 9%;
}

.admin-table--products th:nth-child(9),
.admin-table--products td:nth-child(9) {
  width: 8%;
}

.admin-table--products th:nth-child(10),
.admin-table--products td:nth-child(10) {
  width: 8%;
}

.admin-table--products th:nth-child(11),
.admin-table--products td:nth-child(11) {
  width: 12%;
}

.admin-table--products .admin-product-cell img {
  height: 38px;
  width: 38px;
}

.admin-table--products td:nth-child(1) {
  white-space: normal;
}

.admin-table--products .admin-product-cell strong {
  font-size: 0.82rem;
  white-space: normal;
  word-break: break-word;
}

.admin-product-cell {
  align-items: center;
  display: flex;
  gap: 8px;
}

.admin-product-cell img {
  border-radius: 6px;
  height: 52px;
  object-fit: cover;
  width: 52px;
}

.admin-product-cell strong {
  display: block;
  font-size: 0.9rem;
}

.admin-product-cell small {
  color: rgba(23, 22, 21, 0.66);
}

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

.admin-actions--stacked-cta {
  align-items: stretch;
  flex-direction: column;
  gap: 8px;
}

.admin-inline-form {
  margin: 0;
}

.admin-actions .btn-ghost,
.admin-actions .btn-danger {
  font-size: 0.74rem;
  min-height: 30px;
  padding: 0 10px;
}

.admin-inline-form--confirm-sale {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.admin-inline-form--cancel-reserve {
  width: 100%;
}

.admin-inline-form--receipt-update {
  align-items: stretch;
  display: grid;
  gap: 6px;
  margin-top: 6px;
  max-width: 220px;
}

.admin-receipt-input {
  border: 1px solid rgba(36, 33, 31, 0.22);
  border-radius: 8px;
  max-width: 100%;
  min-height: 30px;
  padding: 4px 6px;
  width: 100%;
}

.admin-receipt-thumb-btn {
  background: transparent;
  border: 1px solid rgba(36, 33, 31, 0.18);
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  padding: 0;
}

.admin-receipt-thumb-btn:hover {
  border-color: rgba(215, 180, 105, 0.8);
}

.admin-receipt-thumb {
  border-radius: 7px;
  display: block;
  height: 58px;
  object-fit: cover;
  width: 58px;
}

.admin-receipt-preview-row {
  align-items: center;
  display: flex;
  gap: 8px;
}

.admin-receipt-remove-link {
  background: transparent;
  border: 0;
  color: #b03131;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0;
  text-decoration: underline;
}

.admin-receipt-remove-link:hover {
  color: #8f2323;
}

.admin-actions--stacked-cta .btn-ghost {
  justify-content: center;
  min-height: 36px;
  width: 100%;
}

.btn-cta-confirm {
  background: #d7b469 !important;
  border-color: #d7b469 !important;
  color: #171615 !important;
  font-weight: 800;
}

.btn-cta-confirm:hover {
  background: #cfa34f !important;
  border-color: #cfa34f !important;
}

.btn-cta-cancel {
  background: #d7b469 !important;
  border-color: #d7b469 !important;
  color: #171615 !important;
  font-weight: 800;
}

.btn-cta-cancel:hover {
  background: #cfa34f !important;
  border-color: #cfa34f !important;
}

.btn-cta-register-outflow {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--ink) !important;
  font-weight: 800;
  min-height: 40px;
}

.btn-cta-register-outflow:hover {
  background: #cfa34f !important;
  border-color: #cfa34f !important;
}

.btn-cta-revert {
  background: #31551f !important;
  border-color: #31551f !important;
  color: #f6f0e2 !important;
  font-weight: 800;
}

.btn-cta-revert:hover {
  background: #274418 !important;
  border-color: #274418 !important;
}

.admin-inline-form button {
  margin: 0;
}

.btn-danger {
  border-color: rgba(176, 32, 32, 0.5);
  color: #a42727;
}

.admin-quote-cell {
  max-width: 360px;
  min-width: 220px;
  white-space: normal;
}

.admin-accounting-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.admin-accounting-grid > .admin-kpi {
  grid-column: span 3;
}

.admin-accounting-grid > .admin-kpi:nth-last-child(-n + 3) {
  grid-column: span 4;
}

.admin-kpi {
  display: grid;
  gap: 6px;
}

.admin-kpi span {
  color: rgba(23, 22, 21, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-kpi strong {
  font-size: 1.2rem;
}

.admin-muted {
  color: rgba(23, 22, 21, 0.68);
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.admin-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.admin-page-link {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  min-width: 34px;
  text-decoration: none;
}

.admin-page-link.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 1080px) {
  .admin-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .admin-accounting-grid > .admin-kpi,
  .admin-accounting-grid > .admin-kpi:nth-last-child(-n + 3) {
    grid-column: span 1;
  }

  .admin-workspace {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    gap: 10px;
    position: static;
    top: auto;
  }

  .admin-tabs {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }

  .admin-tab {
    font-size: 0.8rem;
    justify-content: center;
    min-height: 36px;
    padding: 0 8px;
    text-align: center;
    white-space: normal;
  }

  .admin-sidebar-actions {
    flex-direction: row;
  }

  .admin-sidebar-actions .btn-primary,
  .admin-sidebar-actions .btn-ghost {
    flex: 1;
  }

  .admin-form-grid--wide {
    grid-template-columns: 1fr;
  }

  .admin-inline-category {
    grid-template-columns: 1fr;
  }

  .admin-import-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .admin-body .admin-table td:first-child {
    background: transparent;
    color: inherit;
    font-weight: inherit;
  }

  .admin-body .admin-table td:first-child::before {
    color: rgba(23, 22, 21, 0.72);
  }

  .admin-body .topbar {
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
  }

  .admin-body .topbar__actions {
    align-items: stretch;
    display: grid;
    gap: 8px;
    width: 100%;
  }

  .admin-body .topbar__note {
    margin: 0;
  }

  .admin-body .topbar__actions form {
    width: 100%;
  }

  .admin-body .topbar__actions .btn-ghost {
    justify-content: center;
    width: 100%;
  }

  .admin-main {
    padding-bottom: 24px;
  }

  .admin-card {
    border-radius: 10px;
    padding: 12px;
  }

  .admin-card__head {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-head-actions {
    width: 100%;
  }

  .admin-head-actions .btn-primary,
  .admin-head-actions .btn-ghost {
    flex: 1;
    justify-content: center;
  }

  .admin-sidebar-actions {
    flex-direction: column;
  }

  .admin-summary-grid {
    grid-template-columns: 1fr;
  }

  .admin-accounting-grid {
    grid-template-columns: 1fr;
  }

  .admin-filters {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-filters input,
  .admin-filters select,
  .admin-filters button {
    width: 100%;
  }

  .admin-filters select {
    font-size: 0.92rem;
    font-weight: 600;
    min-height: 42px;
    padding: 0 12px;
  }

  .admin-filters .btn-ghost {
    min-height: 42px;
  }

  .admin-form-grid select {
    font-size: 0.92rem;
    font-weight: 600;
    min-height: 44px;
    padding: 0 12px;
  }

  .admin-tab {
    font-size: 0.76rem;
    height: 34px;
    line-height: 1.1;
    min-height: 34px;
    padding: 0 6px;
  }

  .admin-table,
  .admin-table thead,
  .admin-table tbody,
  .admin-table tr,
  .admin-table th,
  .admin-table td {
    display: block;
    width: 100%;
  }

  .admin-table thead {
    display: none;
  }

  .admin-table tbody {
    display: grid;
    gap: 10px;
  }

  .admin-table tr {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px 10px;
  }

  .admin-table td {
    align-items: start;
    border-bottom: 1px dashed rgba(36, 33, 31, 0.12);
    display: grid;
    gap: 6px;
    grid-template-columns: minmax(92px, 36%) minmax(0, 1fr);
    padding: 8px 0;
    white-space: normal !important;
  }

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

  .admin-table td::before {
    color: rgba(23, 22, 21, 0.72);
    content: attr(data-label);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .admin-table td[colspan] {
    border-bottom: 0;
    display: block;
    padding: 8px 0 4px;
    text-align: center;
  }

  .admin-table td[colspan]::before {
    content: none;
  }

  .admin-table--products {
    min-width: 0;
    table-layout: auto;
  }

  .admin-table--products th:nth-child(1),
  .admin-table--products th:nth-child(2),
  .admin-table--products th:nth-child(3),
  .admin-table--products th:nth-child(4),
  .admin-table--products th:nth-child(5),
  .admin-table--products th:nth-child(6),
  .admin-table--products th:nth-child(7),
  .admin-table--products th:nth-child(8),
  .admin-table--products th:nth-child(9),
  .admin-table--products th:nth-child(10),
  .admin-table--products th:nth-child(11),
  .admin-table--products td:nth-child(1),
  .admin-table--products td:nth-child(2),
  .admin-table--products td:nth-child(3),
  .admin-table--products td:nth-child(4),
  .admin-table--products td:nth-child(5),
  .admin-table--products td:nth-child(6),
  .admin-table--products td:nth-child(7),
  .admin-table--products td:nth-child(8),
  .admin-table--products td:nth-child(9),
  .admin-table--products td:nth-child(10),
  .admin-table--products td:nth-child(11) {
    width: 100%;
  }

  .admin-table--products th,
  .admin-table--products td {
    overflow: visible;
    text-overflow: unset;
  }

  .admin-table--products td:nth-child(1),
  .admin-table--products td[data-label="Producto"] {
    display: block;
  }

  .admin-table--products td:nth-child(1)::before,
  .admin-table--products td[data-label="Producto"]::before {
    display: block;
    margin-bottom: 8px;
  }

  .admin-table--products td[data-label="Producto"] .admin-product-cell,
  .admin-product-cell {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .admin-table--products .admin-product-cell img {
    height: 56px;
    width: 56px;
  }

  .admin-product-cell > div {
    min-width: 0;
  }

  .admin-product-cell strong {
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .admin-product-cell small {
    display: block;
    margin-top: 3px;
  }

  .admin-actions {
    width: 100%;
  }

  .admin-actions .btn-ghost,
  .admin-actions .btn-danger {
    flex: 1;
    justify-content: center;
  }

  .admin-actions form {
    flex: 1;
  }

  .admin-actions form button {
    width: 100%;
  }

  .admin-inline-form--confirm-sale {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-inline-form--receipt-update {
    max-width: 100%;
  }

  .admin-receipt-preview-row {
    align-items: flex-start;
  }

  .admin-receipt-input {
    max-width: 100%;
    width: 100%;
  }
}
