:root {
  --ath-red: #e30613;
  --ath-red-dark: #b8000a;
  --ath-red-soft: rgba(227, 6, 19, .08);
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --text: #18212b;
  --muted: #667085;
  --line: #e5e8ee;
  --green: #22a06b;
  --blue: #2672c9;
  --danger: #e30613;
  --radius: 16px;
  --shadow: 0 12px 34px rgba(16, 24, 40, .07);
  --shadow-soft: 0 4px 14px rgba(16, 24, 40, .05);
  --sidebar-width: 280px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0, #f4f6f8 240px, #f4f6f8 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
}

button,
.btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  padding: 0 16px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
  transition: .16s ease;
}

button:hover,
.btn:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(16, 24, 40, .08);
}

.primary,
.btn.primary {
  border-color: var(--ath-red) !important;
  background: var(--ath-red) !important;
  color: #fff !important;
  font-weight: 900;
}

.primary:hover,
.btn.primary:hover {
  background: var(--ath-red-dark) !important;
}

.secondary,
.btn.secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.danger {
  border-color: #ffc4c8;
  background: #fff0f0;
  color: var(--danger);
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  width: var(--sidebar-width);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .96);
  border-right: 1px solid var(--line);
  box-shadow: 8px 0 26px rgba(16, 24, 40, .04);
  backdrop-filter: blur(14px);
}

.brand {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  flex: 0 0 auto;
  width: 72px;
  height: auto;
}

.brand strong {
  min-width: 0;
  overflow: hidden;
  font-size: 16px;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

nav {
  display: grid;
  gap: 5px;
  padding: 14px 10px;
}

nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: .16s ease;
}

nav a:hover {
  background: var(--ath-red-soft);
  color: var(--ath-red);
}

nav a.active {
  background: linear-gradient(90deg, var(--ath-red-soft), rgba(227, 6, 19, .025));
  color: var(--ath-red);
  box-shadow: inset 3px 0 0 var(--ath-red);
}

.nav-icon {
  display: block;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.nav-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main {
  min-height: 100vh;
  margin-left: var(--sidebar-width);
  min-width: 0;
  overflow-x: hidden;
}

.login-main {
  margin-left: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 78px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.env {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.auth-area {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-badge {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f8fa;
  color: #475467;
  font-size: 13px;
  font-weight: 800;
}

.messages {
  display: grid;
  gap: 10px;
  margin: 18px 28px 0;
}

.message {
  padding: 13px 16px;
  border: 1px solid #ffc4c8;
  border-left: 4px solid var(--ath-red);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font-weight: 800;
}

.message.success {
  border-color: #bde8cb;
  border-left-color: var(--green);
  background: #e8f8ee;
  color: #15803d;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.login-panel {
  width: min(460px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
}

.login-panel::before {
  display: block;
  width: 96px;
  height: 38px;
  margin-bottom: 22px;
  background: url("/static/img/ath-logo.png") left center / contain no-repeat;
  content: "";
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--ath-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: 28px;
  line-height: 1.14;
}

h2 {
  font-size: 18px;
}

.lead,
.description {
  color: var(--muted);
  line-height: 1.55;
}

.page-head,
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 28px 16px;
}

.page-head p,
.section-head p {
  margin: 5px 0 0;
  color: var(--muted);
}

.filters,
.search,
.fetch-row {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: #475467;
  font-size: 12px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

textarea {
  padding-top: 11px;
  resize: vertical;
}

.search input {
  min-width: min(460px, 54vw);
}

.form,
.contact-form,
.admin-form {
  display: grid;
  gap: 16px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 332px));
  gap: 28px;
  padding: 8px 28px 28px;
}

.item-card {
  display: grid;
  grid-template-rows: 300px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.item-card:hover {
  transform: translateY(-3px);
  border-color: rgba(227, 6, 19, .28);
  box-shadow: var(--shadow);
}

.image-box {
  position: relative;
  display: grid;
  place-items: center;
  height: 300px;
  overflow: hidden;
  background: #fff;
  color: var(--ath-red);
  font-size: 34px;
  font-weight: 950;
  text-decoration: none;
}

.image-box.placeholder,
.image-box span {
  display: grid;
  place-items: center;
  height: 100%;
}

.image-box img {
  display: block;
  width: 88%;
  height: 88%;
  object-fit: contain;
  padding: 0;
  background: transparent;
}

.item-card .image-box img {
  position: absolute;
  inset: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  object-fit: contain;
  object-position: center center;
}

.card-body {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 0 30px 22px;
  background: #fff;
}

.meta,
small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.card-body h2 {
  min-height: 0;
  font-size: 18px;
  line-height: 1.22;
}

.card-body p {
  margin: 0;
  color: #475467;
  line-height: 1.5;
}

.price {
  font-size: 22px;
  font-weight: 950;
  line-height: 1.12;
}

.price small {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

.text-link {
  color: var(--ath-red);
  font-weight: 900;
  text-decoration: none;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: 18px;
  align-items: start;
  padding: 28px;
}

.product-gallery {
  display: grid;
  gap: 12px;
}

.active-gallery-image,
.file-tile,
.placeholder {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.active-gallery-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  background: var(--surface);
  cursor: zoom-in;
}

.active-gallery-image:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.active-gallery-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f8fafc;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 8px;
  scrollbar-gutter: stable;
}

.gallery-thumb {
  flex: 0 0 112px;
  width: 112px;
  min-height: 86px;
  overflow: hidden;
  padding: 0;
  border-radius: 10px;
  background: #fff;
}

.gallery-thumb.active {
  border-color: var(--ath-red);
  box-shadow: 0 0 0 2px var(--ath-red-soft);
}

.gallery-thumb img {
  display: block;
  width: 100%;
  height: 84px;
  object-fit: contain;
  background: #f8fafc;
}

.file-tile {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  color: var(--ath-red);
  font-weight: 900;
  text-decoration: none;
}

.panel,
.detail-panel,
.contact-form,
.side-list,
.table-wrap,
.admin-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.detail-panel,
.contact-form,
.side-list,
.admin-form {
  padding: 22px;
}

.facts {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}

.facts div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ececec;
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

dd {
  margin: 0;
  font-weight: 900;
}

.contact-band {
  padding: 0 28px 28px;
}

.two-col,
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
}

.choice input {
  width: auto;
  min-height: auto;
  margin-top: 2px;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: 18px;
  padding: 8px 28px 28px;
  align-items: start;
}

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

.wide-panel {
  min-width: 0;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  padding: 0;
}

.admin-table-full {
  width: calc(100% - 56px);
  max-width: calc(100% - 56px);
  min-width: 0;
  margin: 8px 28px 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

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

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #f8fafc;
  color: #667085;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

td {
  font-size: 13px;
  font-weight: 700;
}

.actions {
  min-width: 280px;
}

.action-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.action-list form {
  display: inline-flex;
  margin: 0;
}

.action-list button,
.action-list .button,
button.compact,
.button.compact {
  min-height: 32px;
  padding: 0 10px;
  font-size: 12px;
}

.inquiry-table {
  min-width: 1200px;
}

.inquiry-table th:nth-child(6),
.inquiry-table td:nth-child(6) {
  width: 230px;
}

.inquiry-table th:nth-child(7),
.inquiry-table td:nth-child(7) {
  width: 280px;
}

.message-cell {
  max-width: 260px;
  color: #344054;
  font-weight: 650;
  white-space: pre-wrap;
}

.note-form {
  display: grid;
  gap: 8px;
  margin: 0;
}

.note-form textarea {
  width: 100%;
  min-height: 96px;
  resize: vertical;
  font-size: 13px;
  line-height: 1.4;
}

.note-form button {
  justify-self: start;
}

.side-list {
  display: grid;
  gap: 14px;
}

.inquiry {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ececec;
}

.admin-form {
  gap: 18px;
}

.form-panel {
  margin: 8px 28px 28px;
}

.compact-form {
  gap: 14px;
}

.fetch-row label {
  flex: 1;
}

.inline-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.inline-form input {
  min-width: 180px;
}

.image-manager {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
}

.image-manager-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.image-manager-head h2 {
  font-size: 16px;
}

.homepage-cover-preview {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 150px;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.homepage-cover-preview img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fafc;
}

.cover-crop {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 420px);
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.cover-crop-preview {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fafc;
  cursor: crosshair;
}

.cover-crop-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  touch-action: none;
}

.existing-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 190px));
  gap: 12px;
  align-items: start;
}

.image-keep {
  position: relative;
  display: grid;
  gap: 8px;
  overflow: hidden;
  min-width: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font-size: 12px;
  cursor: grab;
  box-shadow: var(--shadow-soft);
  transition: transform .12s ease, opacity .12s ease, box-shadow .12s ease;
}

.image-keep.dragging {
  opacity: .45;
  cursor: grabbing;
  transform: scale(.98);
}

.image-keep img,
.file-preview {
  width: 100%;
  height: 140px;
  border-radius: 9px;
  background: #eef2f7;
  object-fit: contain;
  object-position: center center;
}

.file-preview {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 900;
}

.image-keep strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  overflow-wrap: anywhere;
  line-height: 1.25;
}

.cover-badge {
  display: none;
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--ath-red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.image-keep.is-cover .cover-badge {
  display: inline-flex;
}

.remove-image {
  min-height: 32px;
  width: 100%;
  color: var(--danger);
}

.image-keep input {
  width: auto;
  min-height: auto;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 28px;
  background: rgba(16, 24, 40, .86);
}

.lightbox.open {
  display: grid;
  place-items: center;
}

.lightbox-stage {
  max-width: min(1200px, calc(100vw - 56px));
  max-height: calc(100vh - 120px);
  overflow: auto;
}

.lightbox-stage img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 130px);
  transform-origin: center center;
  transition: transform .12s ease;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 101;
  width: 44px;
  min-height: 44px;
  border-radius: 999px;
  font-size: 26px;
}

.lightbox-controls {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 101;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.lightbox-open {
  overflow: hidden;
}

.empty {
  margin: 8px 28px 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 900px) {
  body {
    background: #f4f6f8;
  }

  .sidebar {
    position: sticky;
    top: 0;
    inset: auto;
    z-index: 40;
    width: 100%;
    box-shadow: 0 6px 20px rgba(16, 24, 40, .06);
  }

  .brand {
    height: 64px;
    padding: 0 16px;
  }

  .brand-logo {
    width: 58px;
  }

  .brand strong {
    font-size: 15px;
  }

  nav {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 8px 12px 10px;
    scrollbar-width: thin;
  }

  nav a {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 9px 12px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    white-space: nowrap;
  }

  nav a.active {
    border-color: rgba(227, 6, 19, .18);
    box-shadow: none;
  }

  .nav-icon {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
  }

  .main {
    margin-left: 0;
    overflow-x: clip;
  }

  .topbar,
  .page-head,
  .section-head,
  .search,
  .fetch-row {
    align-items: stretch;
    flex-direction: column;
  }

  .topbar {
    position: static;
    height: auto;
    gap: 12px;
    padding: 14px 16px;
  }

  .env {
    font-size: 16px;
  }

  .auth-area {
    margin-left: 0;
    flex-wrap: wrap;
  }

  .user-badge {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .messages,
  .page-head,
  .section-head,
  .grid,
  .detail-layout,
  .contact-band,
  .admin-layout {
    margin-left: 0;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .messages {
    margin-top: 14px;
  }

  .page-head,
  .section-head {
    gap: 12px;
    padding-top: 22px;
    padding-bottom: 14px;
  }

  h1 {
    font-size: 26px;
  }

  .grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .item-card {
    grid-template-rows: 240px 1fr;
  }

  .image-box {
    height: 240px;
  }

  .card-body {
    padding: 0 22px 20px;
  }

  .price {
    font-size: 21px;
  }

  .admin-table-full {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }

  .search input {
    min-width: 0;
  }

  .search,
  .fetch-row {
    width: 100%;
  }

  .search button,
  .fetch-row button,
  .contact-form button.primary,
  .admin-form button.primary {
    width: 100%;
  }

  .detail-layout,
  .admin-layout,
  .cover-crop,
  .homepage-cover-preview,
  .two-col,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .detail-layout {
    gap: 14px;
  }

  .active-gallery-image {
    aspect-ratio: 1 / 1;
  }

  .gallery-thumb {
    flex-basis: 92px;
    width: 92px;
    min-height: 72px;
  }

  .gallery-thumb img {
    height: 70px;
  }

  .detail-panel,
  .contact-form,
  .admin-form {
    padding: 18px;
  }

  .contact-band {
    margin-left: 0;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .form-panel {
    margin: 0 16px 28px;
  }

  .facts div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .inline-form {
    display: grid;
  }

  .inline-form input {
    min-width: 0;
  }

  .image-manager-head {
    display: grid;
    gap: 4px;
  }

  .homepage-cover-preview img {
    width: 100%;
    height: auto;
    max-height: 180px;
  }

  .existing-images {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  .image-keep img,
  .file-preview {
    height: 120px;
  }

  .table-wrap {
    -webkit-overflow-scrolling: touch;
  }

  th,
  td {
    padding: 11px 12px;
  }

  .actions {
    min-width: 240px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-stage {
    max-width: calc(100vw - 28px);
    max-height: calc(100vh - 112px);
  }

  .lightbox-stage img {
    max-height: calc(100vh - 122px);
  }
}

@media (max-width: 560px) {
  button,
  .btn,
  .button {
    min-height: 42px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand {
    height: 58px;
  }

  .brand-logo {
    width: 52px;
  }

  .brand strong {
    font-size: 14px;
  }

  .topbar {
    position: static;
  }

  .auth-area,
  .auth-area .btn,
  .user-badge {
    width: 100%;
  }

  .auth-area .btn {
    justify-content: center;
  }

  .page-head,
  .section-head {
    padding: 18px 14px 12px;
  }

  .messages,
  .grid,
  .detail-layout,
  .contact-band,
  .admin-layout {
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: 24px;
  }

  .grid {
    gap: 14px;
  }

  .item-card {
    grid-template-rows: 210px 1fr;
  }

  .image-box {
    height: 210px;
  }

  .image-box img {
    inset: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }

  .card-body {
    padding: 0 18px 18px;
  }

  .card-body h2 {
    font-size: 17px;
  }

  .price {
    font-size: 20px;
  }

  .detail-layout {
    padding-top: 14px;
  }

  .active-gallery-image {
    border-radius: 10px;
  }

  .detail-panel,
  .contact-form,
  .admin-form {
    padding: 16px;
    border-radius: 12px;
  }

  .facts {
    margin: 14px 0;
  }

  .admin-table-full {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    margin-left: 14px;
    margin-right: 14px;
    border-radius: 12px;
  }

  .form-panel {
    margin-left: 14px;
    margin-right: 14px;
  }

  .admin-layout {
    gap: 14px;
  }

  .existing-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .image-keep {
    padding: 7px;
  }

  .image-keep img,
  .file-preview {
    height: 108px;
  }

  .inquiry-table {
    min-width: 1080px;
  }

  .login-shell {
    padding: 16px;
  }

  .login-panel {
    padding: 22px;
    border-radius: 14px;
  }
}
