.central-container {
  max-width: min(1760px, 100%);
  width: 100%;
  margin: 0 auto;
  padding: clamp(14px, 2vw, 32px);
}

.central-auth-page.auth-locked .central-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.central-auth-page.auth-locked #authPanel {
  max-width: 420px;
  width: 100%;
}

.central-app {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 26px);
  width: 100%;
}

.central-app .page-header {
  border-radius: 14px;
  flex-wrap: wrap;
  gap: 14px;
}

.central-panel {
  padding: clamp(18px, 2vw, 24px) clamp(18px, 2.2vw, 28px);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.central-panel h2 {
  margin-bottom: 6px;
}

.central-panel .hint {
  margin-top: 0;
  margin-bottom: 14px;
}

.central-panel--wide {
  overflow: hidden;
}

.central-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(172px, 1fr));
  gap: 14px;
}

.central-stat-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.central-stat-card .label {
  font-size: 12px;
  color: #64748b;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}

.central-stat-card .value {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #0f172a;
  line-height: 1.15;
}

.pickup-hints {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 14px;
}

.pickup-hint-card {
  border: 1px solid #fcd34d;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 1px 4px rgba(146, 64, 14, 0.08);
}

.pickup-hint-card strong {
  color: #92400e;
  font-size: 15px;
}

.pickup-hint-meta {
  font-size: 13px;
  color: #78350f;
  margin-top: 8px;
  line-height: 1.45;
}

.kanban-root {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 4px 12px;
  align-items: flex-start;
  scroll-snap-type: x proximity;
}

.kanban-col {
  flex: 0 0 clamp(280px, 26vw, 340px);
  min-width: 272px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f1f5f9;
  max-height: min(72vh, 820px);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.kanban-col-head {
  padding: 12px 14px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 14px 14px 0 0;
  color: #334155;
}

.kanban-col-body {
  padding: 10px;
  overflow-y: auto;
  flex: 1;
}

.kanban-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.45;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.kanban-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.kanban-card:last-child {
  margin-bottom: 0;
}

.kanban-card .num {
  font-weight: 700;
  color: #1d4ed8;
  font-size: 14px;
}

.kanban-card .title {
  margin: 6px 0 0;
  color: #0f172a;
  font-weight: 600;
}

.kanban-card .muted {
  font-size: 12px;
  color: #64748b;
  margin: 6px 0 0;
}

.central-timeline {
  max-height: min(380px, 45vh);
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.central-timeline li {
  padding: 10px 12px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 13px;
  line-height: 1.5;
}

.central-timeline li:last-child {
  border-bottom: none;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.section-head h2 {
  margin: 0;
}
