/* [project]/apps/server/src/app/pretendard_8c49e5e4.module.css [app-client] (css) */
@font-face {
  font-family: pretendard;
  src: url("../media/PretendardVariable-s.p.0ztvx5mb7lxp4.woff2") format("woff2");
  font-display: swap;
  font-weight: 100 900;
}

@font-face {
  font-family: pretendard Fallback;
  src: local(Arial);
  ascent-override: 93.76%;
  descent-override: 23.75%;
  line-gap-override: 0.0%;
  size-adjust: 101.55%;
}

.pretendard_8c49e5e4-module__WOIO9a__className {
  font-family: pretendard, pretendard Fallback;
}

.pretendard_8c49e5e4-module__WOIO9a__variable {
  --font-pretendard: "pretendard", "pretendard Fallback";
}

/* [project]/apps/server/src/app/admin.css [app-client] (css) */
:root {
  --bg: #f3f4f1;
  --surface: #fff;
  --surface-2: #f8f9f7;
  --line: #dde0da;
  --line-strong: #8a918b;
  --ink: #1b1f1c;
  --ink-2: #545b56;
  --ink-3: #666d68;
  --accent: #1f5b45;
  --accent-hover: #1a4d3b;
  --on-accent: #fff;
  --accent-soft: #eef4f1;
  --focus-ring: #1f5b45;
  --bar: #1f3b30;
  --on-bar: #eef3ef;
  --on-bar-muted: #c9cec9;
  --bar-active: #2d5243;
  --bar-line: #658c7c;
  --danger: #b42318;
  --danger-soft: #fdecea;
  --alert: #c2410c;
  --alert-soft: #fff3eb;
  --alert-line: #f3c3a6;
  --alert-hover: #ffe9dc;
  --warn-soft: #fff8e1;
  --on-warn: #7a4b00;
  --chart-track: #dde0da;
  --status-received: #3f4b5b;
  --status-received-bg: #e8e9eb;
  --status-assigning: #875c00;
  --status-assigning-bg: #f1ebe0;
  --status-accepted: #1d4ed8;
  --status-accepted-bg: #e4eafa;
  --status-picked-up: #6d28d9;
  --status-picked-up-bg: #ede5fa;
  --status-delivered: #137035;
  --status-delivered-bg: #e3eee7;
  --status-failed: #b42318;
  --status-failed-bg: #f6e5e3;
  --status-cancelled: #5f6661;
  --status-cancelled-bg: #f1f2f1;
  --radius: 6px;
  --font: var(--font-pretendard, "Pretendard"), -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font: 14px/1.5 var(--font);
}

a {
  color: inherit;
}

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

.mono {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}

.muted {
  color: var(--ink-3);
}

:focus-visible {
  box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px var(--focus-ring);
  outline: none;
}

.shell-bar {
  background: var(--bar);
  height: 48px;
  color: var(--on-bar);
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  display: flex;
}

.shell-bar .brand {
  letter-spacing: .02em;
  font-weight: 700;
}

.shell-bar nav {
  gap: 4px;
  display: flex;
}

.shell-bar nav a {
  border-radius: var(--radius);
  color: var(--on-bar-muted);
  padding: 6px 12px;
  text-decoration: none;
}

.shell-bar nav a[aria-current="page"] {
  background: var(--bar-active);
  color: var(--on-bar);
}

.shell-bar .spacer {
  flex: 1;
}

.shell-bar .today {
  color: var(--on-bar-muted);
}

.shell-bar button {
  border: 1px solid var(--bar-line);
  color: var(--on-bar-muted);
  border-radius: var(--radius);
  cursor: pointer;
  background: none;
  padding: 4px 10px;
}

.page {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 24px 48px;
}

.page-head {
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  display: flex;
}

.page-head h1 {
  margin: 0;
  font-size: 18px;
}

.page-head .spacer {
  flex: 1;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.panel > h2 {
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  margin: 0;
  padding: 10px 14px;
  font-size: 13px;
}

.panel-body {
  padding: 14px;
}

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

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

.order-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas: "pickup recipient places"
                       "memo drivers places";
  align-items: start;
  gap: 16px;
  display: grid;
}

.og-pickup {
  grid-area: pickup;
}

.og-recipient {
  grid-area: recipient;
}

.og-memo {
  grid-area: memo;
}

.og-drivers {
  grid-area: drivers;
}

.og-places {
  flex-direction: column;
  grid-area: places;
  align-self: stretch;
  min-height: 0;
  display: flex;
}

.og-places > .panel, .og-places .panel-body, .place-search {
  flex-direction: column;
  flex: 1;
  min-height: 0;
  display: flex;
}

.place-search .place-list--open {
  flex: 1 1 0;
  min-height: 240px;
}

.detail-grid {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: 16px;
  display: grid;
}

.btn {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  white-space: nowrap;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 14px;
  text-decoration: none;
  display: inline-flex;
}

.btn:hover {
  background: var(--surface-2);
}

.btn:disabled {
  opacity: .5;
  cursor: default;
}

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn--danger {
  color: var(--danger);
  border-color: var(--danger);
}

.btn--ghost {
  background: none;
  border-color: #0000;
}

.btn--small {
  height: 28px;
  padding: 0 10px;
  font-size: 13px;
}

.badge {
  white-space: nowrap;
  color: var(--badge);
  background: var(--badge-bg);
  border-radius: 999px;
  align-items: center;
  gap: 5px;
  padding: 1px 8px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.badge:before {
  content: "";
  background: currentColor;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.badge--RECEIVED {
  --badge: var(--status-received);
  --badge-bg: var(--status-received-bg);
}

.badge--ASSIGNING {
  --badge: var(--status-assigning);
  --badge-bg: var(--status-assigning-bg);
}

.badge--ACCEPTED {
  --badge: var(--status-accepted);
  --badge-bg: var(--status-accepted-bg);
}

.badge--PICKED_UP {
  --badge: var(--status-picked-up);
  --badge-bg: var(--status-picked-up-bg);
}

.badge--DELIVERED {
  --badge: var(--status-delivered);
  --badge-bg: var(--status-delivered-bg);
}

.badge--FAILED {
  --badge: var(--status-failed);
  --badge-bg: var(--status-failed-bg);
}

.badge--CANCELLED {
  --badge: var(--status-cancelled);
  --badge-bg: var(--status-cancelled-bg);
  text-decoration: line-through;
}

.attn {
  border: 1px solid var(--alert-line);
  background: var(--alert-soft);
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.attn > h2 {
  color: var(--alert);
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 14px;
  font-size: 13px;
  display: flex;
}

.attn-count {
  background: var(--alert);
  color: var(--surface);
  font-variant-numeric: tabular-nums;
  border-radius: 999px;
  padding: 0 7px;
  font-size: 12px;
}

.attn-row {
  border-top: 1px solid var(--alert-line);
  grid-template-columns: 128px 140px minmax(0, 1fr) 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  display: grid;
}

.attn-row:hover {
  background: var(--alert-hover);
}

.attn-reason {
  color: var(--alert);
  font-weight: 700;
}

.attn-route {
  color: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
  overflow: hidden;
}

.attn-route:hover {
  text-decoration: underline;
}

.attn-action {
  white-space: nowrap;
}

.kpi {
  gap: 8px;
  margin-bottom: 16px;
  display: flex;
  overflow-x: auto;
}

.kpi-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  flex: 1 0 auto;
  gap: 2px;
  min-width: 96px;
  padding: 8px 14px;
  display: grid;
}

.kpi-card:hover {
  background: var(--surface-2);
}

.kpi-card[aria-pressed="true"] {
  border-color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--ink);
}

.kpi-num {
  font-variant-numeric: tabular-nums;
  font-size: 20px;
  font-weight: 700;
}

.kpi-label {
  color: var(--ink-2);
  font-size: 12px;
}

.kpi-card--alert .kpi-num, .kpi-card--alert .kpi-label {
  color: var(--alert);
}

.kpi-card--alert[aria-pressed="true"] {
  border-color: var(--alert);
  box-shadow: inset 0 -2px 0 var(--alert);
}

.kpi-grid {
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
  display: grid;
}

a.kpi-card {
  color: inherit;
  text-decoration: none;
}

.kpi-card--static {
  cursor: default;
}

.kpi-card--static:hover {
  background: var(--surface);
}

.trend {
  border-bottom: 1px solid var(--line);
  align-items: flex-end;
  gap: 4px;
  height: 160px;
  display: flex;
}

.trend-col {
  flex-direction: column;
  flex: 1 1 0;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  min-width: 0;
  height: 100%;
  display: flex;
}

.trend-bar {
  background: var(--chart-track);
  border-radius: 3px 3px 0 0;
  flex-direction: column-reverse;
  width: 100%;
  max-width: 28px;
  display: flex;
  overflow: hidden;
}

.trend-seg--ok {
  background: var(--status-delivered);
}

.trend-seg--fail {
  background: var(--status-failed);
}

.trend-label {
  color: var(--ink-3);
  white-space: nowrap;
  font-size: 11px;
}

.toolbar {
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  display: flex;
}

.toolbar input[type="search"] {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  flex: 1;
  min-width: 0;
  height: 32px;
  padding: 0 10px;
}

.toolbar select {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  height: 32px;
  padding: 0 8px;
}

.table-scroll {
  overflow-x: auto;
}

.tabs {
  border-bottom: 1px solid var(--line);
  gap: 2px;
  margin-bottom: 0;
  display: flex;
}

.tabs button {
  cursor: pointer;
  color: var(--ink-2);
  background: none;
  border: 0;
  border-bottom: 2px solid #0000;
  padding: 8px 12px;
}

.tabs button[aria-pressed="true"] {
  color: var(--ink);
  border-bottom-color: var(--accent);
  font-weight: 600;
}

.tabs .count {
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
  margin-left: 4px;
}

.table {
  border-collapse: collapse;
  background: var(--surface);
  width: 100%;
}

.table th {
  text-align: left;
  color: var(--ink-3);
  border-bottom: 1px solid var(--line);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
}

.table td {
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  padding: 9px 12px;
}

.table th, .table td {
  white-space: nowrap;
}

.table tbody tr:hover {
  background: var(--surface-2);
}

.table .route {
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  max-width: 0;
  overflow: hidden;
}

.row-link {
  text-decoration: none;
}

.field {
  gap: 4px;
  margin-bottom: 12px;
  display: grid;
}

.field label {
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 600;
}

.field input, .field textarea, .field select {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  height: 34px;
  padding: 0 10px;
}

.field textarea {
  resize: vertical;
  height: auto;
  min-height: 72px;
  padding: 8px 10px;
}

.field input[readonly] {
  background: var(--surface-2);
}

.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px var(--focus-ring);
  outline: none;
}

.field-row {
  gap: 8px;
  display: flex;
}

.field-row input {
  flex: 1;
}

.field-error {
  color: var(--danger);
  font-size: 12px;
}

.chips {
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
  display: flex;
}

.chip {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  cursor: pointer;
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 12px;
}

.place-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-height: 280px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  overflow: auto;
}

.place-list--open {
  max-height: none;
  margin-bottom: 0;
}

.place-list button {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  text-align: left;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 2px 8px;
  width: 100%;
  padding: 8px 10px;
  display: grid;
}

.place-list li:last-child button {
  border-bottom: 0;
}

.place-list button:hover {
  background: var(--surface-2);
}

.place-list button strong {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.place-list button .muted {
  text-overflow: ellipsis;
  white-space: nowrap;
  grid-column: 2;
  font-size: 12px;
  overflow: hidden;
}

.notice {
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 10px 14px;
}

.notice--info {
  background: var(--accent-soft);
}

.notice--warn {
  background: var(--warn-soft);
  color: var(--on-warn);
}

.notice--error {
  background: var(--danger-soft);
  color: var(--danger);
}

.kv {
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 6px 12px;
  margin: 0;
  display: grid;
}

.kv dt {
  color: var(--ink-3);
  padding-top: 2px;
  font-size: 12px;
}

.kv dd {
  margin: 0;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  border-bottom: 1px dashed var(--line);
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 8px;
  padding: 6px 0;
  display: grid;
}

.timeline li:last-child {
  border-bottom: 0;
}

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

.driver-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-height: 320px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  overflow: auto;
}

.driver-list label {
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  display: grid;
}

.driver-list li:last-child label {
  border-bottom: 0;
}

.no-push {
  color: var(--alert);
  font-size: 12px;
  font-weight: 600;
}

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

.login form {
  width: 340px;
}

.login h1 {
  margin: 0 0 16px;
  font-size: 18px;
}

@media (max-width: 1100px) {
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .order-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "pickup"
                         "recipient"
                         "places"
                         "memo"
                         "drivers";
  }

  .og-places .place-list--open {
    max-height: 420px;
  }
}

@media (max-width: 960px) {
  .detail-grid, .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-head {
    flex-wrap: wrap;
  }
}

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

  .shell-bar {
    gap: 12px;
    padding: 0 12px;
  }

  .shell-bar .today {
    display: none;
  }

  .attn-row {
    flex-wrap: wrap;
    gap: 6px 12px;
    padding: 8px 14px;
    display: flex;
  }

  .attn-route {
    flex: 100%;
  }
}

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