/* [project]/packages/ui/src/styles.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --accent: #166534;
  --accent-soft: #dcfce7;
  --ink: #17211b;
  --muted: #5d6962;
  --surface: #ffffffe6;
  --line: #17211b1f;
  --background: #f4f7f4;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, var(--accent-soft), transparent 34rem),
    var(--background);
}

.theme-sklad {
  --accent: #1d4ed8;
  --accent-soft: #dbeafe;
}

.theme-admin {
  --accent: #7e22ce;
  --accent-soft: #f3e8ff;
}

main {
  align-content: center;
  width: min(1120px, 100% - 32px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 0;
  display: grid;
}

.shell {
  border: 1px solid var(--line);
  background: var(--surface);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px #17211b1a;
}

.topbar {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  display: flex;
}

.brand {
  align-items: center;
  gap: 12px;
  font-weight: 750;
  display: flex;
}

.brand__mark {
  color: #fff;
  background: var(--accent);
  border-radius: 11px;
  place-items: center;
  width: 36px;
  height: 36px;
  display: grid;
}

.environment {
  color: var(--muted);
  font-size: .875rem;
}

.content-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 40px;
  padding: clamp(28px, 5vw, 64px);
  display: grid;
}

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

h1 {
  letter-spacing: -.055em;
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 4.4rem);
  line-height: .98;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  margin: 24px 0 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.complete {
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 10px 14px;
  font-size: .9rem;
  font-weight: 750;
  display: inline-flex;
}

.complete:before {
  content: "✓";
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  place-items: center;
  width: 20px;
  height: 20px;
  font-size: .75rem;
  display: grid;
}

.status-card {
  border: 1px solid var(--line);
  background: #ffffffb8;
  border-radius: 20px;
  align-self: end;
  padding: 22px;
}

.status-card__header {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.status-card h2 {
  margin: 0;
  font-size: 1rem;
}

.status-card__content {
  color: var(--muted);
  margin-top: 28px;
  font-size: .925rem;
  line-height: 1.55;
}

.status-badge {
  color: #9f1239;
  background: #ffe4e6;
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  font-size: .75rem;
  font-weight: 750;
  display: inline-flex;
}

.status-badge > span {
  background: currentColor;
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.status-badge--available {
  color: #166534;
  background: #dcfce7;
}

.status-badge--not-configured {
  color: #92400e;
  background: #fef3c7;
}

.error-panel {
  padding: clamp(28px, 6vw, 64px);
}

.error-panel button {
  color: #fff;
  background: var(--accent);
  font: inherit;
  cursor: pointer;
  border: 0;
  border-radius: 10px;
  margin-top: 20px;
  padding: 11px 16px;
  font-weight: 700;
}

@media (max-width: 760px) {
  main {
    width: min(100% - 20px, 620px);
    padding: 10px 0;
  }

  .shell {
    border-radius: 20px;
  }

  .topbar {
    padding: 16px 18px;
  }

  .environment {
    display: none;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 30px 22px;
  }
}

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

.sr-only {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.kp-button {
  color: #fff;
  background: var(--accent);
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 15px;
  font-weight: 700;
  transition: opacity .12s, transform .12s;
  display: inline-flex;
}

.kp-button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.kp-button:disabled {
  opacity: .52;
  cursor: not-allowed;
}

.kp-button--secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.kp-button--danger {
  background: #b42318;
}

.kp-button--ghost {
  color: var(--muted);
  background: none;
}

.kp-input {
  width: 100%;
  min-height: 42px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd8d1;
  border-radius: 10px;
  outline: none;
  padding: 9px 12px;
}

.kp-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 14%, transparent);
}

.kp-textarea {
  resize: vertical;
  min-height: 96px;
}

.kp-checkbox {
  cursor: pointer;
  align-items: center;
  gap: 9px;
  display: inline-flex;
}

.kp-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.kp-field {
  gap: 7px;
  display: grid;
}

.kp-field__label {
  font-size: .875rem;
  font-weight: 700;
}

.kp-field__message {
  color: var(--muted);
  font-size: .78rem;
}

.kp-field__message.is-error {
  color: #b42318;
}

.kp-dialog {
  border: 1px solid var(--line);
  width: min(520px, 100% - 24px);
  color: var(--ink);
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 24px 70px #17211b38;
}

.kp-dialog::backdrop {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: #0e18127a;
}

.kp-dialog header, .kp-dialog footer {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  display: flex;
}

.kp-dialog header {
  border-bottom: 1px solid var(--line);
}

.kp-dialog header h2 {
  margin: 0;
  font-size: 1.1rem;
}

.kp-dialog footer {
  border-top: 1px solid var(--line);
  justify-content: flex-end;
}

.kp-dialog__body {
  color: var(--muted);
  padding: 20px;
  line-height: 1.55;
}

.kp-table-wrap {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  overflow-x: auto;
}

.kp-table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
}

.kp-table th, .kp-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
}

.kp-table th {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  background: #f7f9f7;
  font-size: .78rem;
}

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

.kp-pagination {
  color: var(--muted);
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  font-size: .875rem;
  display: flex;
}

.kp-badge {
  color: #475467;
  background: #f2f4f7;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: .75rem;
  font-weight: 750;
  display: inline-flex;
}

.kp-badge--success {
  color: #166534;
  background: #dcfce7;
}

.kp-badge--warning {
  color: #92400e;
  background: #fef3c7;
}

.kp-badge--danger {
  color: #9f1239;
  background: #ffe4e6;
}

.kp-badge--info {
  color: #1e40af;
  background: #dbeafe;
}

.kp-alert {
  color: #1e3a8a;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 11px;
  gap: 4px;
  padding: 13px 15px;
  display: grid;
}

.kp-alert--success {
  color: #166534;
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.kp-alert--warning {
  color: #92400e;
  background: #fffbeb;
  border-color: #fde68a;
}

.kp-alert--danger {
  color: #991b1b;
  background: #fef2f2;
  border-color: #fecaca;
}

.kp-toast {
  z-index: 50;
  border-radius: 11px;
  justify-content: space-between;
  gap: 16px;
  min-width: 280px;
  padding: 13px 15px;
  display: flex;
  position: fixed;
  bottom: 20px;
  right: 20px;
  box-shadow: 0 14px 40px #00000029;
}

.kp-toast button {
  color: inherit;
  cursor: pointer;
  background: none;
  border: 0;
}

.kp-spinner {
  border: 2px solid;
  border-right-color: #0000;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  animation: .65s linear infinite kp-spin;
  display: inline-block;
}

.kp-spinner--small {
  width: 15px;
  height: 15px;
}

.kp-spinner--large {
  border-width: 3px;
  width: 34px;
  height: 34px;
}

@keyframes kp-spin {
  to {
    transform: rotate(360deg);
  }
}

.kp-state {
  color: var(--muted);
  text-align: center;
  background: #ffffffa6;
  border: 1px dashed #cfd8d1;
  border-radius: 16px;
  justify-items: center;
  gap: 10px;
  padding: 48px 24px;
  display: grid;
}

.kp-state h2, .kp-state p {
  margin: 0;
}

.kp-state h2 {
  color: var(--ink);
  font-size: 1.1rem;
}

.kp-state__icon {
  width: 42px;
  height: 42px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 12px;
  place-items: center;
  font-weight: 800;
  display: grid;
}

.kp-state--error .kp-state__icon {
  color: #b42318;
  background: #fee4e2;
}

.kp-page-header {
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  display: flex;
}

.kp-page-header h1 {
  letter-spacing: -.035em;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.kp-page-header p {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 8px;
  font-size: .75rem;
  font-weight: 800;
}

.kp-page-header__description {
  color: var(--muted);
  margin-top: 10px;
}

.kp-page-header__actions {
  gap: 10px;
  display: flex;
}

.kp-upload {
  min-height: 100px;
  color: var(--accent);
  cursor: pointer;
  background: #fff;
  border: 1px dashed #aab8ae;
  border-radius: 12px;
  place-items: center;
  padding: 20px;
  font-weight: 700;
  display: grid;
}

.kp-upload input {
  opacity: 0;
  width: 1px;
  height: 1px;
  position: absolute;
}

.kp-upload.is-disabled {
  opacity: .5;
  cursor: not-allowed;
}

.kp-stat {
  border: 1px solid var(--line);
  background: #fff;
  border-left: 4px solid #98a2b3;
  border-radius: 13px;
  gap: 7px;
  padding: 18px;
  display: grid;
}

.kp-stat > span, .kp-stat small {
  color: var(--muted);
}

.kp-stat strong {
  font-size: 1.75rem;
}

.kp-stat--success {
  border-left-color: #16a34a;
}

.kp-stat--warning {
  border-left-color: #d97706;
}

.kp-stat--danger {
  border-left-color: #dc2626;
}

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

.kp-sidebar {
  color: #e8f1eb;
  background: #17251c;
  flex-direction: column;
  height: 100vh;
  padding: 18px 14px;
  display: flex;
  position: sticky;
  top: 0;
}

.kp-sidebar__brand {
  color: #fff;
  align-items: center;
  gap: 10px;
  padding: 5px 8px 22px;
  font-weight: 800;
  display: flex;
}

.kp-sidebar__brand > span {
  background: var(--accent);
  border-radius: 10px;
  place-items: center;
  width: 34px;
  height: 34px;
  display: grid;
}

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

.kp-sidebar nav a {
  color: inherit;
  border-radius: 9px;
  padding: 10px 11px;
  text-decoration: none;
}

.kp-sidebar nav a:hover, .kp-sidebar nav a[aria-current="page"] {
  color: #fff;
  background: #ffffff1a;
}

.kp-sidebar__footer {
  color: #aebbb2;
  margin-top: auto;
  padding: 12px 8px 2px;
  font-size: .82rem;
}

.kp-app-shell__main {
  min-width: 0;
}

.kp-topbar {
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #ffffffe0;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 68px;
  padding: 12px clamp(18px, 3vw, 32px);
  display: flex;
}

.kp-topbar__actions {
  align-items: center;
  gap: 12px;
  display: flex;
}

.kp-app-content {
  width: 100%;
  min-height: auto;
  margin: 0;
  padding: clamp(22px, 4vw, 40px);
  display: block;
}

.kp-auth-page {
  place-items: center;
  min-height: 100vh;
  padding: 20px;
  display: grid;
}

.kp-auth-card {
  border: 1px solid var(--line);
  background: #fffffff0;
  border-radius: 20px;
  width: min(420px, 100%);
  padding: clamp(24px, 5vw, 38px);
  box-shadow: 0 20px 60px #17211b1a;
}

.kp-auth-card h1 {
  letter-spacing: -.035em;
  margin: 0 0 8px;
  font-size: 1.8rem;
}

.kp-auth-card > p {
  color: var(--muted);
  margin: 0 0 24px;
}

.kp-auth-card form {
  gap: 17px;
  display: grid;
}

.kp-auth-card .kp-button {
  width: 100%;
  margin-top: 4px;
}

@media (max-width: 760px) {
  .kp-app-shell {
    grid-template-columns: 1fr;
  }

  .kp-sidebar {
    height: auto;
    padding-bottom: 10px;
    position: static;
  }

  .kp-sidebar nav {
    display: flex;
    overflow-x: auto;
  }

  .kp-sidebar__footer {
    display: none;
  }

  .kp-page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .kp-pagination {
    justify-content: space-between;
  }

  .kp-pagination span {
    font-size: .75rem;
  }
}

/* [project]/apps/admin/app/admin.css [app-client] (css) */
.theme-admin {
  color: #18202b;
  background: #f6f7f9;
  margin: 0;
}

.admin-nav {
  gap: 4px;
  display: grid;
}

.admin-nav a {
  color: inherit;
  border-radius: 8px;
  padding: 10px 12px;
  text-decoration: none;
}

.admin-nav a:hover {
  background: color-mix(in srgb, currentColor 10%, transparent);
}

.admin-nav a[aria-current="page"] {
  background: color-mix(in srgb, currentColor 10%, transparent);
  font-weight: 700;
}

.admin-brand-link {
  color: inherit;
  text-decoration: none;
}

.admin-card {
  background: #fff;
  border: 1px solid #dfe3e8;
  border-radius: 14px;
  margin-top: 24px;
  padding: 20px;
}

.admin-card h2, .admin-card h3 {
  margin-top: 0;
}

.admin-grid, .admin-stats {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
  display: grid;
}

.admin-stat-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.admin-stat-link .kp-stat {
  height: 100%;
  transition: box-shadow .15s, transform .15s;
}

.admin-stat-link:hover .kp-stat, .admin-stat-link:focus-visible .kp-stat {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px #1018281f;
}

.admin-stat-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 13px;
}

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

.admin-form-submit.kp-button {
  justify-self: start;
  width: auto;
}

.admin-form-row {
  flex-wrap: wrap;
  align-items: end;
  gap: 14px;
  display: flex;
}

.admin-form-row > .kp-field {
  flex: 1;
  min-width: 170px;
}

.admin-form-row.compact {
  align-items: center;
}

.admin-form-row.compact > * {
  min-width: 80px;
}

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

.admin-user-action.kp-button {
  border-radius: 8px;
  justify-self: end;
  width: auto;
  min-height: 32px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.admin-user-save.kp-button {
  justify-self: end;
  width: auto;
  font-weight: 400;
}

.admin-users-list {
  margin-top: 24px;
}

.admin-add-user.kp-button, .admin-add-seller.kp-button {
  font-weight: 400;
  text-decoration: none;
}

.admin-sellers-list {
  margin-top: 24px;
}

.admin-sellers-heading {
  margin: 30px 0 0;
  font-size: 20px;
}

.admin-pending-section {
  background: #fffbeb;
  border-left: 4px solid #d97706;
}

.admin-section-heading {
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  display: flex;
}

.admin-section-heading h2, .admin-section-heading p {
  margin: 0;
}

.admin-section-heading p {
  color: #667085;
  margin-top: 5px;
}

.admin-section-heading a {
  color: #166534;
  font-weight: 400;
  text-decoration: none;
}

.admin-pending-table {
  margin-top: 18px;
}

.admin-pending-overview {
  border-left: 4px solid #d97706;
}

.admin-pending-cards {
  gap: 10px;
  margin-top: 18px;
  display: grid;
}

.admin-pending-cards article {
  background: #fffbeb;
  border: 1px solid #f2d18b;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px;
  display: flex;
}

.admin-pending-cards article > div {
  gap: 4px;
  display: grid;
}

.admin-pending-cards article > div:last-child {
  justify-items: end;
}

.admin-pending-cards span, .admin-pending-cards small {
  color: #667085;
}

.admin-pending-cards .admin-pending-client-link {
  color: #000;
  text-decoration: none;
}

.admin-seller-edit.kp-button {
  border-radius: 8px;
  min-height: 32px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.admin-seller-save.kp-button {
  width: auto;
  font-weight: 400;
}

.admin-seller-form-actions {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  display: flex;
}

.admin-seller-delete.kp-button {
  border-radius: 8px;
  width: auto;
  min-height: 32px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 400;
}

.admin-seller-delete-confirm {
  gap: 16px;
  display: grid;
}

.admin-seller-delete-confirm p {
  margin: 0;
}

.admin-seller-delete-confirm .kp-button {
  cursor: pointer;
}

.admin-application-actions {
  flex-wrap: wrap;
  justify-self: start;
  gap: 10px;
  display: flex;
}

.admin-application-actions .kp-button, .admin-application-action.kp-button {
  width: auto;
  font-weight: 400;
}

.admin-application-page-actions {
  justify-self: end;
}

.admin-application-save.kp-button {
  width: auto;
  font-weight: 400;
}

.admin-application-action.kp-button {
  justify-self: start;
}

.admin-organizations-list {
  margin-top: 24px;
}

.admin-organization-edit.kp-button {
  border-radius: 8px;
  min-height: 32px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.admin-organization-save.kp-button {
  justify-self: end;
  width: auto;
  font-weight: 400;
}

.admin-back-link.kp-button, .admin-create-warehouse.kp-button {
  font-weight: 400;
  text-decoration: none;
}

.admin-warehouse-feedback {
  margin-top: 24px;
}

.admin-warehouse-open.kp-button {
  border-radius: 8px;
  min-height: 32px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.admin-warehouse-delete.kp-button {
  border-radius: 8px;
  width: auto;
  min-height: 32px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 400;
}

.admin-warehouses-list {
  margin-top: 24px;
}

.admin-warehouse-builder {
  gap: 20px;
  margin-top: 24px;
  display: grid;
}

.admin-warehouse-summary {
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  display: grid;
}

.admin-warehouse-summary > div {
  background: #fff;
  border: 1px solid #dfe3e8;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  display: flex;
}

.admin-warehouse-summary span, .admin-hierarchy-label {
  color: #667085;
  font-size: 13px;
}

.admin-warehouse-summary strong {
  font-size: 24px;
}

.admin-create-panel {
  margin-top: 0;
}

.admin-create-panel summary, .admin-inline-create summary {
  cursor: pointer;
  color: #315c42;
  width: fit-content;
  font-weight: 600;
}

.admin-create-panel[open] summary, .admin-inline-create[open] summary {
  margin-bottom: 16px;
}

.admin-zone-list {
  gap: 18px;
  display: grid;
}

.admin-zone-card {
  background: #fff;
  border: 1px solid #d7ded9;
  border-radius: 16px;
  padding: 20px;
}

.admin-zone-card > header, .admin-rack-card > header {
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  display: flex;
}

.admin-zone-card h2, .admin-zone-card h3, .admin-zone-card header small {
  margin: 2px 0 0;
}

.admin-inline-create {
  background: #f8faf8;
  border: 1px dashed #b9c6bd;
  border-radius: 10px;
  margin-top: 18px;
  padding: 12px 14px;
}

.admin-rack-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
  margin-top: 16px;
  display: grid;
}

.admin-rack-card {
  background: #f9fafb;
  border: 1px solid #dfe3e8;
  border-radius: 12px;
  padding: 16px;
}

.admin-rack-card > header > strong {
  color: #667085;
  font-size: 13px;
  font-weight: 400;
}

.admin-cell-create {
  grid-template-columns: minmax(120px, 1fr) minmax(160px, 1fr) auto;
  gap: 8px;
  margin-top: 14px;
  display: grid;
}

.admin-cell-create .kp-button {
  width: auto;
  font-weight: 400;
}

.admin-cell-grid {
  gap: 8px;
  margin-top: 14px;
  display: grid;
}

.admin-cell {
  background: #fff;
  border: 1px solid #dfe3e8;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  display: flex;
}

.admin-cell.is-disabled {
  opacity: .58;
}

.admin-cell > div:first-child {
  min-width: 0;
  display: grid;
}

.admin-cell > div:first-child span, .admin-cell > div:first-child small {
  color: #667085;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  overflow: hidden;
}

.admin-cell > div:first-child strong {
  font-size: 18px;
}

.admin-cell-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  display: flex;
}

.admin-cell-actions .kp-button {
  width: auto;
  min-height: 30px;
  padding: 4px 8px;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
}

.admin-empty-hint {
  color: #667085;
  margin: 14px 0 0;
}

.admin-location-edit {
  margin-top: 0;
}

.admin-label-toolbar {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  display: flex;
}

.admin-label-toolbar .kp-button {
  width: auto;
  font-weight: 400;
}

.admin-label-sheet {
  box-sizing: border-box;
  background: #fff;
  border: 1px dashed #98a29b;
  place-items: center;
  width: 58mm;
  height: 40mm;
  display: grid;
  overflow: hidden;
}

.admin-location-label {
  box-sizing: border-box;
  color: #000;
  background: #fff;
  grid-template-columns: 31mm 1fr;
  align-items: center;
  width: 58mm;
  height: 40mm;
  padding: 2mm;
  display: grid;
}

.admin-location-label img {
  width: 29mm;
  height: 29mm;
}

.admin-location-label > div {
  gap: .7mm;
  min-width: 0;
  display: grid;
}

.admin-location-label span {
  font-size: 8pt;
  line-height: 1.05;
}

.admin-location-label strong {
  font-size: 14pt;
  line-height: 1;
}

.admin-location-label small {
  overflow-wrap: anywhere;
  font-size: 5.5pt;
  line-height: 1;
}

.admin-role .kp-badge, .admin-logout.kp-button {
  font-weight: 400;
}

.admin-actions a {
  color: #263c80;
  background: #eef2ff;
  border-radius: 8px;
  padding: 9px 12px;
  text-decoration: none;
}

.admin-loading {
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 160px;
  display: flex;
}

.admin-password {
  gap: 8px;
  display: flex;
}

.admin-password .kp-input {
  flex: 1;
  min-width: 0;
}

.kp-auth-card .admin-password .kp-button {
  width: auto;
  margin-top: 0;
}

.admin-scan {
  max-width: 620px;
  margin: 24px 0;
}

.kp-table td small, .kp-table td strong {
  display: block;
}

.admin-card dl {
  grid-template-columns: minmax(90px, auto) 1fr;
  gap: 12px;
  display: grid;
}

.admin-card dt {
  color: #667085;
}

.admin-card dd {
  margin: 0;
}

@media (max-width: 760px) {
  .admin-form-row {
    display: grid;
  }

  .admin-form-row > .kp-field {
    min-width: 0;
  }

  .admin-card {
    padding: 14px;
  }

  .admin-section-heading, .admin-pending-cards article {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-pending-cards article > div:last-child {
    justify-items: start;
  }

  .admin-warehouse-summary, .admin-rack-grid, .admin-cell-create {
    grid-template-columns: 1fr;
  }

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

  .admin-cell-actions {
    justify-content: flex-start;
  }
}

@media print {
  @page {
    size: 58mm 40mm;
    margin: 0;
  }

  body * {
    visibility: hidden;
  }

  .admin-label-sheet, .admin-label-sheet * {
    visibility: visible;
  }

  .admin-label-sheet {
    border: 0;
    position: fixed;
    inset: 0;
  }
}

/*# sourceMappingURL=_1a4fr1f._.css.map*/