:root {
  color-scheme: light;
  --bg: #0b1020;
  --bg-soft: #121a31;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: #ffffff;
  --panel-muted: #f4f7fb;
  --line: rgba(15, 23, 42, 0.1);
  --text: #0f172a;
  --text-soft: #475569;
  --brand: #0b5cab;
  --brand-strong: #05386b;
  --accent: #e08a00;
  --accent-soft: #fff2d6;
  --success: #0f9d58;
  --danger: #c0392b;
  --warning: #b45309;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
  --shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-xs: 10px;
  --font-ui: "Avenir Next", "Hiragino Sans", "Yu Gothic UI", "Noto Sans JP", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(224, 138, 0, 0.2), transparent 35%),
    radial-gradient(circle at top right, rgba(11, 92, 171, 0.22), transparent 40%),
    linear-gradient(180deg, #07111f 0%, #0e172b 32%, #f3f5f9 32%, #f3f5f9 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-ui);
  color: var(--text);
  background: transparent;
}

body.is-locked {
  overflow: hidden;
}

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

button {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.hidden {
  display: none !important;
}

.app-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08), transparent 16%),
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.08), transparent 13%),
  linear-gradient(135deg, rgba(11, 16, 32, 0.55), rgba(11, 16, 32, 0.12) 40%, rgba(255, 255, 255, 0) 60%);
}

.login-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at top left, rgba(224, 138, 0, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(11, 92, 171, 0.22), transparent 30%),
    rgba(7, 16, 31, 0.78);
  backdrop-filter: blur(14px);
}

.is-locked .login-overlay {
  display: grid;
}

.is-locked .app-shell {
  display: none;
}

.login-card {
  width: min(520px, 100%);
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 30px 70px rgba(2, 8, 23, 0.45);
}

.login-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.login-description {
  margin: 10px 0 0;
  line-height: 1.7;
  color: var(--text-soft);
}

.app-shell {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - 24px));
  margin: 0 auto;
  padding: 20px 0 36px;
}

.app-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.brand-block h1 {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 800;
}

.subtitle,
.setup-description,
.help,
.panel-note,
.status-chip,
.panel-kicker {
  color: var(--text-soft);
}

.subtitle {
  margin: 10px 0 0;
  max-width: 60ch;
  font-size: 0.95rem;
}

.header-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.status-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
}

.tabbar {
  display: flex;
  gap: 10px;
  margin: 14px 0 18px;
  padding: 10px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.tab-btn {
  flex: 1 1 0;
  min-height: 52px;
  padding: 0 16px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--text-soft);
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.tab-btn:hover {
  transform: translateY(-1px);
  background: rgba(11, 92, 171, 0.07);
}

.tab-btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 10px 24px rgba(11, 92, 171, 0.22);
}

.app-main {
  margin-top: 12px;
}

.view {
  display: none;
}

.view.is-active {
  display: block;
}

.view-grid,
.admin-grid {
  display: grid;
  gap: 18px;
}

.cashier-grid {
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
}

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

.panel {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 22px;
  backdrop-filter: blur(12px);
}

.panel-main {
  min-height: 70vh;
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.panel-head h2 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.2;
}

.panel-kicker {
  margin: 0 0 6px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.panel-note {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--panel-muted);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.toolbar {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.search-field,
.field {
  display: grid;
  gap: 8px;
}

.search-field span,
.field span,
.restore-mode legend {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-soft);
}

.search-field input,
.field input,
.field textarea,
.field select,
.product-edit input,
.product-edit select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input[type="file"] {
  padding: 10px 12px;
  min-height: 0;
  line-height: 1.3;
}

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

.search-field input:focus,
.field input:focus,
.field textarea:focus,
.field select:focus,
.product-edit input:focus,
.product-edit select:focus {
  border-color: rgba(11, 92, 171, 0.5);
  box-shadow: 0 0 0 4px rgba(11, 92, 171, 0.12);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  background: #fff;
  color: var(--text-soft);
  font-weight: 700;
}

.chip.is-active {
  background: linear-gradient(135deg, rgba(11, 92, 171, 0.98), rgba(5, 56, 107, 0.98));
  color: #fff;
  border-color: transparent;
}

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

.product-card {
  display: grid;
  gap: 10px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: none;
  text-align: left;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.product-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  border-color: rgba(11, 92, 171, 0.18);
}

.product-card:focus-visible,
.btn:focus-visible,
.tab-btn:focus-visible,
.chip:focus-visible,
.cart-step:focus-visible,
.history-action:focus-visible {
  outline: 3px solid rgba(224, 138, 0, 0.45);
  outline-offset: 2px;
}

.product-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: #f7f8fa;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  display: grid;
  gap: 6px;
}

.product-badge {
  display: none;
}

.product-title {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.3;
  font-weight: 800;
}

.product-meta,
.cart-meta,
.history-meta,
.small-note {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.product-price {
  font-size: 1.12rem;
  line-height: 1.2;
  font-weight: 900;
  color: var(--brand-strong);
}

.product-meta,
.count-pill {
  display: none;
}

.cart-panel {
  position: sticky;
  top: 12px;
}

.cart-list,
.history-list,
.product-manager {
  display: grid;
  gap: 12px;
}

.cart-item,
.history-card,
.product-row,
.summary-card,
.breakdown-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.04);
}

.cart-item {
  padding: 14px;
  display: grid;
  gap: 10px;
}

.cart-item-head,
.history-head,
.product-row-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.cart-item-title,
.history-title {
  margin: 0;
  font-weight: 800;
}

.cart-quantity-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.cart-step,
.history-action,
.btn {
  border: 0;
  border-radius: 14px;
  min-height: 46px;
  padding: 0 14px;
  font-weight: 800;
}

.cart-step {
  width: 44px;
  background: #eef3f8;
}

.cart-step.remove {
  background: rgba(192, 57, 43, 0.12);
  color: var(--danger);
}

.cart-qty {
  min-width: 48px;
  text-align: center;
  font-weight: 800;
}

.cart-totals {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8fbff, #fff8ea);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 800;
}

.grand-total {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--brand-strong);
}

.panel-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text);
  background: #edf2f7;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
}

.btn-secondary {
  background: #fff;
}

.btn-danger {
  color: #fff;
  background: linear-gradient(135deg, #d35400, var(--danger));
}

.btn-wide {
  width: 100%;
}

.notice,
.help {
  margin: 0;
  line-height: 1.6;
}

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

.summary-card {
  padding: 14px;
}

.summary-card .label {
  color: var(--text-soft);
  font-size: 0.85rem;
  font-weight: 700;
}

.summary-card .value {
  margin-top: 8px;
  font-size: 1.35rem;
  font-weight: 900;
}

.breakdown-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.breakdown-card {
  padding: 16px;
}

.breakdown-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

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

.breakdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--panel-muted);
}

.breakdown-bar {
  flex: 1 1 auto;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.breakdown-bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), #d97706);
}

.history-card {
  padding: 16px;
}

.history-grid {
  display: grid;
  gap: 8px;
}

.history-items {
  display: grid;
  gap: 6px;
  padding: 10px 0 0;
  color: var(--text-soft);
}

.history-items li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.history-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.history-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--panel-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.tag.cancelled {
  background: rgba(192, 57, 43, 0.12);
  color: var(--danger);
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.table th,
.table td {
  padding: 10px 8px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  vertical-align: top;
}

.table th {
  color: var(--text-soft);
  font-size: 0.86rem;
}

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text-soft);
}

.toggle input {
  width: 18px;
  height: 18px;
}

.stack {
  display: grid;
  gap: 14px;
}

.product-create-form,
.product-edit {
  display: grid;
  gap: 12px;
}

.product-create-form {
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: var(--panel-muted);
  border: 1px dashed rgba(15, 23, 42, 0.14);
}

.admin-utilities {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 12px;
}

.utility-head h3 {
  margin: 0;
  font-size: 1rem;
}

.export-restore-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(300px, 1.15fr);
  gap: 12px;
  align-items: start;
}

.export-actions,
.restore-actions {
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.export-actions {
  display: grid;
  gap: 12px;
  align-content: start;
}

.export-button-row {
  display: grid;
  gap: 10px;
}

.export-button-row .btn {
  width: 100%;
}

.product-create-form h3,
.product-edit h3 {
  margin: 0;
  font-size: 1rem;
}

.product-create-fields,
.product-edit-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.product-row {
  padding: 10px;
}

.product-row-head {
  align-items: center;
  gap: 8px;
}

.product-row-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

.product-row-meta {
  font-size: 0.88rem;
  color: var(--text-soft);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-preview {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #eef2f8;
}

.product-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-field {
  align-content: start;
  gap: 10px 12px;
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  grid-template-columns: 72px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  min-width: 0;
}

.image-field > span {
  grid-column: 1 / -1;
}

.image-field .image-preview {
  width: 56px;
  height: 56px;
  max-width: 56px;
  max-height: 56px;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f7f8fa;
  grid-column: 1;
  grid-row: 2;
}

.product-edit-fields {
  margin-top: 12px;
}

.product-create-fields .field:nth-child(6),
.product-edit-fields .field:nth-child(6) {
  width: min(100%, 220px);
  justify-self: start;
}

.product-create-form .field input,
.product-create-form .field select,
.product-edit .field input,
.product-edit .field select {
  min-height: 44px;
  padding: 10px 12px;
}

.product-create-form .field input[type="file"],
.product-edit .field input[type="file"] {
  min-height: 44px;
  padding: 8px 10px;
  overflow: hidden;
  color: var(--text-soft);
  border-style: dashed;
  background: #f8fafc;
  font-size: 0.92rem;
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  width: 100%;
  min-width: 0;
}

.field input[type="file"]::file-selector-button {
  margin-right: 10px;
  border: 0;
  border-radius: 999px;
  padding: 7px 11px;
  background: linear-gradient(135deg, rgba(11, 92, 171, 0.1), rgba(11, 92, 171, 0.16));
  color: var(--brand-strong);
  font-weight: 800;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.field input[type="file"]::file-selector-button:hover {
  background: rgba(11, 92, 171, 0.16);
}

.field input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.field input[type="number"]::-webkit-outer-spin-button,
.field input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.switch-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  justify-self: start;
  align-self: start;
  min-height: 44px;
}

.switch-row,
.restore-mode {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
}

.restore-mode {
  margin: 0;
}

.danger-panel {
  border-color: rgba(192, 57, 43, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 245, 0.95));
}

.setup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 16, 31, 0.76);
  backdrop-filter: blur(10px);
}

.setup-card {
  width: min(560px, 100%);
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f6f8fc);
  box-shadow: 0 26px 70px rgba(2, 8, 23, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.setup-card h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.setup-card .stack {
  margin-top: 18px;
}

.toast-host {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 32px));
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.95);
  color: #fff;
  box-shadow: var(--shadow);
}

.toast.success {
  background: rgba(15, 157, 88, 0.96);
}

.toast.warn {
  background: rgba(180, 83, 9, 0.96);
}

.toast.error {
  background: rgba(192, 57, 43, 0.96);
}

.empty-state {
  padding: 22px;
  border-radius: 18px;
  background: var(--panel-muted);
  border: 1px dashed rgba(15, 23, 42, 0.12);
  color: var(--text-soft);
  line-height: 1.7;
}

.count-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(11, 92, 171, 0.1);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
}

.muted {
  color: var(--text-soft);
}

@media (max-width: 1120px) {
  .cashier-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    position: static;
  }

  .export-restore-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .app-shell {
    width: min(100%, calc(100% - 14px));
    padding-top: 10px;
  }

  .app-header,
  .panel,
  .setup-card {
    border-radius: 20px;
  }

  .app-header {
    flex-direction: column;
  }

  .header-status {
    justify-content: flex-start;
  }

  .tabbar {
    padding: 8px;
  }

  .tab-btn {
    min-height: 48px;
    padding: 0 12px;
  }

  .product-create-fields,
  .product-edit-fields {
    grid-template-columns: 1fr;
  }

  .product-create-fields .field:nth-child(1),
  .product-create-fields .field:nth-child(2),
  .product-edit-fields .field:nth-child(1),
  .product-edit-fields .field:nth-child(2) {
    grid-column: auto;
  }

  .product-create-fields .image-field,
  .product-edit-fields .image-field {
    grid-column: auto;
  }

  .product-create-fields .field:nth-child(6),
  .product-edit-fields .field:nth-child(6) {
    width: auto;
    justify-self: stretch;
  }

  .image-field {
    grid-template-columns: 1fr;
  }

  .image-field > span,
  .image-field .image-preview,
  .image-field input[type="file"] {
    grid-column: auto;
    grid-row: auto;
  }
}
