:root {
  color-scheme: light;
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-muted: #eef2f5;
  --text: #1d232b;
  --muted: #667085;
  --line: #d9dee5;
  --accent: #0f766e;
  --accent-strong: #0b5f59;
  --warning: #a16207;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 14px 20px;
}

.brand {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 14px;
}

.nav-actions form {
  margin: 0;
}

.button,
button {
  align-items: center;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 650;
  min-height: 38px;
  padding: 8px 12px;
}

.button.secondary,
button.secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

.button:hover,
button:hover {
  background: var(--accent-strong);
  text-decoration: none;
}

.button.secondary:hover,
button.secondary:hover {
  background: var(--surface-muted);
}

.container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 28px 20px 48px;
}

.page-title {
  align-items: flex-start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 22px;
}

.page-title h1 {
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 4px;
}

.page-title p {
  color: var(--muted);
  margin: 0;
}

.title-actions,
.filter-actions,
.form-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.messages {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.message {
  background: #ecfdf3;
  border: 1px solid #abefc6;
  border-radius: 6px;
  color: #067647;
  padding: 10px 12px;
}

.message.error {
  background: #fef3f2;
  border-color: #fecdca;
  color: #b42318;
}

.message.warning {
  background: #fffaeb;
  border-color: #fedf89;
  color: var(--warning);
}

.closed-week-notice {
  align-items: center;
  background: #fffaeb;
  border: 1px solid #fedf89;
  border-radius: 8px;
  color: var(--warning);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 14px 16px;
}

.closed-week-notice.submitted {
  background: #ecfdf3;
  border-color: #abefc6;
  color: #067647;
}

.closed-week-notice strong {
  color: inherit;
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}

.closed-week-notice p {
  margin: 0;
}

.readonly-message {
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  margin: 0;
}

.reference-strip {
  align-items: center;
  background: #f9fafb;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 16px;
}

.reference-strip strong {
  color: var(--text);
}

.stats-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.weekly-progress-panel {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 0.8fr);
  margin-bottom: 24px;
  padding: 16px 18px;
}

.weekly-progress-copy {
  display: grid;
  gap: 4px;
}

.weekly-progress-copy strong {
  font-size: 20px;
  line-height: 1.2;
}

.weekly-progress-copy span {
  color: var(--muted);
}

.progress-meter {
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  height: 14px;
  overflow: hidden;
}

.progress-meter div {
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  height: 100%;
  min-width: 8px;
}

.stat-card,
.panel,
.banner-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat-card {
  padding: 18px;
}

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

.stat-card form {
  margin: 0;
}

.stat-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.stat-value {
  font-size: 30px;
  font-weight: 760;
  line-height: 1.1;
}

.stat-value-small {
  font-size: 22px;
}

.panel {
  margin-bottom: 20px;
  overflow: hidden;
}

.panel-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
}

.panel-header h2 {
  font-size: 17px;
  margin: 0;
}

.panel-body {
  padding: 16px;
}

.compact-empty {
  padding: 12px 0;
  text-align: left;
}

.action-panel {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

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

.banner-card {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 180px;
  overflow: hidden;
  padding: 16px;
}

.banner-card h2 {
  font-size: 18px;
  margin: 0 0 4px;
}

.banner-card p {
  color: var(--muted);
  margin: 0;
}

.banner-image {
  align-items: center;
  background: var(--surface-muted);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  min-height: 96px;
  overflow: hidden;
}

.banner-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

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

.promotion-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
  padding: 14px;
}

.promotion-media {
  align-items: center;
  background: var(--surface-muted);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  min-height: 140px;
  overflow: hidden;
}

.promotion-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.promotion-content h2 {
  font-size: 20px;
  line-height: 1.25;
  margin: 8px 0 6px;
}

.promotion-content p {
  color: var(--muted);
  margin: 0 0 12px;
}

.promotion-action-note {
  background: #fffaeb;
  border: 1px solid #fedf89;
  border-radius: 6px;
  color: var(--warning);
  font-size: 13px;
  font-weight: 650;
  margin: 0 0 10px;
  padding: 8px 10px;
}

.promotion-meta,
.promo-skus {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.promo-skus {
  margin-bottom: 10px;
}

.promo-sku-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.empty-state {
  color: var(--muted);
  padding: 28px 16px;
  text-align: center;
}

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

table {
  border-collapse: collapse;
  min-width: 820px;
  width: 100%;
}

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

th {
  background: #f9fafb;
  color: #475467;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

td strong {
  display: block;
  font-weight: 720;
}

.weekly-table {
  min-width: 1080px;
  table-layout: fixed;
}

.weekly-table th:nth-child(1),
.weekly-table td:nth-child(1) {
  width: 108px;
}

.weekly-table th:nth-child(2),
.weekly-table td:nth-child(2) {
  width: 250px;
}

.weekly-table th:nth-child(3),
.weekly-table td:nth-child(3),
.weekly-table th:nth-child(4),
.weekly-table td:nth-child(4) {
  width: 92px;
}

.weekly-table th:nth-child(5),
.weekly-table td:nth-child(5) {
  width: 110px;
}

.weekly-table th:nth-child(6),
.weekly-table td:nth-child(6),
.weekly-table th:nth-child(7),
.weekly-table td:nth-child(7) {
  width: 110px;
}

.weekly-table th:nth-child(8),
.weekly-table td:nth-child(8) {
  width: 208px;
}

.previous-value {
  color: #344054;
  font-weight: 720;
  white-space: nowrap;
}

.previous-note {
  color: var(--muted);
  max-width: 180px;
}

.weekly-table input {
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  min-height: 36px;
  padding: 7px 8px;
  width: 100%;
}

.weekly-table input[type="number"] {
  max-width: 100%;
  min-width: 86px;
}

.weekly-table .errorlist {
  font-size: 12px;
  margin-top: 4px;
}

.weekly-table tr.row-incomplete td {
  background: #fffcf5;
}

.weekly-table tr.row-promoted td {
  border-left: 3px solid var(--accent);
}

.weekly-table tr.row-stock-zero td {
  background: #fef3f2;
}

.row-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.mini-badge {
  border-radius: 999px;
  display: inline-flex;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  padding: 5px 7px;
}

.mini-badge.promoted {
  background: #e6fffb;
  color: #0f766e;
}

.mini-badge.complete {
  background: #ecfdf3;
  color: #067647;
}

.mini-badge.pending {
  background: #fffaeb;
  color: var(--warning);
}

.mini-badge.warning {
  background: #fef3f2;
  color: #b42318;
}

.stock-delta {
  margin-top: 6px;
}

.mini-badge.stock-up {
  background: #ecfdf3;
  color: #067647;
}

.mini-badge.stock-down {
  background: #fef3f2;
  color: #b42318;
}

.mini-badge.stock-same {
  background: #eef2f5;
  color: #344054;
}

.form-actions {
  background: var(--surface);
  border-top: 1px solid var(--line);
  justify-content: flex-end;
  padding: 14px 16px;
}

.weekly-entry-summary {
  align-items: center;
  background: #f9fafb;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 12px 16px;
}

.weekly-entry-summary strong {
  display: block;
}

.weekly-entry-summary span {
  color: var(--muted);
}

.scope-pill {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #344054;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  padding: 7px 10px;
}

.weekly-actions {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.weekly-action-status {
  display: grid;
  gap: 2px;
  min-width: 220px;
}

.weekly-action-status span {
  color: var(--muted);
}

.weekly-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.filter-actions {
  margin-bottom: 16px;
}

.filter-form {
  align-items: end;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
  margin-bottom: 18px;
  padding: 14px;
}

.weekly-filter-form {
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  grid-template-columns: minmax(260px, 2fr) minmax(180px, 1fr) auto;
  margin-bottom: 0;
}

.segmented-control {
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 40px;
  padding: 3px;
}

.segmented-control a {
  align-items: center;
  border-radius: 6px;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  font-weight: 750;
  justify-content: center;
  padding: 7px 8px;
  text-align: center;
}

.segmented-control a:hover {
  background: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.segmented-control a.active {
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.08);
  color: var(--text);
}

.field.compact {
  margin-bottom: 0;
}

.field select,
.filter-form select {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  min-height: 40px;
  padding: 8px 10px;
  width: 100%;
}

.filter-buttons {
  align-items: center;
  display: flex;
  gap: 8px;
}

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

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

.field-help {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-top: 5px;
}

.checkbox-field {
  align-items: center;
  display: flex;
  gap: 8px;
}

.checkbox-field input {
  height: 18px;
  min-height: 0;
  width: 18px;
}

.checkbox-field label {
  margin: 0;
}

.confirm-box {
  background: #fffcf5;
  border: 1px solid #fedf89;
  border-radius: 8px;
  padding: 14px;
}

.row-checkbox {
  height: 18px;
  width: 18px;
}

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

.chip {
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #344054;
  display: inline-flex;
  font-size: 13px;
  font-weight: 650;
  padding: 6px 10px;
}

.status-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.status-column {
  background: #f9fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.status-column h3 {
  font-size: 14px;
  margin: 0 0 10px;
}

.status-column p {
  margin: 0;
}

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

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

.summary-item {
  background: #f9fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.summary-item-header {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 10px;
}

.summary-item-header h3 {
  font-size: 14px;
  margin: 0;
}

.summary-item-header a {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-weight: 750;
  min-width: 34px;
  padding: 4px 9px;
  text-align: center;
}

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

.summary-line {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6px;
  grid-template-columns: minmax(120px, 1fr) minmax(0, 1.5fr) auto;
  padding-top: 8px;
}

.summary-line:first-child {
  border-top: 0;
  padding-top: 0;
}

.summary-line strong {
  font-weight: 720;
}

.summary-textarea {
  background: #f9fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  min-height: 220px;
  padding: 12px;
  resize: vertical;
  width: 100%;
}

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

.prep-check-item {
  align-items: flex-start;
  background: #f9fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 12px;
  padding: 12px;
}

.prep-check-item h3 {
  font-size: 14px;
  margin: 0 0 3px;
}

.prep-check-item p {
  color: var(--muted);
  margin: 0;
}

.prep-check-icon {
  border-radius: 999px;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  padding: 6px 8px;
}

.prep-check-item.ok .prep-check-icon {
  background: #ecfdf3;
  color: #067647;
}

.prep-check-item.warning .prep-check-icon {
  background: #fffaeb;
  color: var(--warning);
}

.prep-check-item.critical .prep-check-icon {
  background: #fef3f2;
  color: #b42318;
}

.prep-check-item.info .prep-check-icon {
  background: #eef2f5;
  color: #344054;
}

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

.alert-summary-item {
  align-items: center;
  background: #f9fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  padding: 12px;
}

.alert-summary-item:hover {
  background: var(--surface-muted);
  text-decoration: none;
}

.alert-summary-item.active {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.alert-summary-item span {
  color: var(--muted);
  font-weight: 650;
}

.alert-summary-item strong {
  font-size: 22px;
}

.alert-pill {
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  padding: 6px 9px;
  white-space: nowrap;
}

.alert-pill.critical {
  background: #fef3f2;
  color: #b42318;
}

.alert-pill.warning {
  background: #fffaeb;
  color: var(--warning);
}

.alert-pill.info {
  background: #eef2f5;
  color: #344054;
}

.alert-pill.ok {
  background: #ecfdf3;
  color: #067647;
}

.impact-table {
  min-width: 1380px;
}

.provider-impact-table {
  min-width: 1080px;
}

.impact-row td {
  background: #ffffff;
}

.impact-critical td {
  background: #fffbfa;
}

.impact-warning td {
  background: #fffdf5;
}

.followup-form {
  display: grid;
  gap: 8px;
  min-width: 280px;
}

.followup-form select,
.followup-form input {
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  min-height: 36px;
  padding: 7px 8px;
  width: 100%;
}

.followup-form button {
  justify-content: center;
  min-height: 34px;
}

.import-pill {
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  padding: 6px 9px;
  white-space: nowrap;
}

.import-pill.new {
  background: #ecfdf3;
  color: #067647;
}

.import-pill.update {
  background: #fffaeb;
  color: var(--warning);
}

.import-pill.unchanged {
  background: #eef2f5;
  color: #344054;
}

.import-pill.error {
  background: #fef3f2;
  color: #b42318;
}

.alert-row td {
  background: #ffffff;
}

.status-pill {
  background: #eef2f5;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #344054;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 10px;
}

.status-pill.submitted {
  background: #ecfdf3;
  border-color: #abefc6;
  color: #067647;
}

.status-pill.draft {
  background: #fffaeb;
  border-color: #fedf89;
  color: var(--warning);
}

.status-pill.open {
  background: #ecfdf3;
  border-color: #abefc6;
  color: #067647;
}

.status-pill.closed {
  background: #fef3f2;
  border-color: #fecdca;
  color: #b42318;
}

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

.search-bar {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.search-bar input {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  min-height: 40px;
  min-width: 260px;
  padding: 8px 10px;
}

.login-shell {
  align-items: center;
  display: flex;
  min-height: 100vh;
  padding: 24px;
}

.login-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0 auto;
  max-width: 420px;
  padding: 28px;
  width: 100%;
}

.login-panel h1 {
  font-size: 24px;
  margin: 0 0 6px;
}

.login-panel p {
  color: var(--muted);
  margin: 0 0 20px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-weight: 650;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  min-height: 42px;
  padding: 8px 10px;
  width: 100%;
}

.field input[type="file"] {
  padding: 9px 10px;
}

.field select[multiple] {
  min-height: 220px;
}

.field textarea {
  resize: vertical;
}

.promotion-live-preview {
  background: #f9fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 14px;
  overflow: hidden;
}

.promotion-live-preview-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
}

.promotion-live-preview-header h2 {
  font-size: 15px;
  margin: 0;
}

.promotion-live-card {
  display: grid;
  gap: 16px;
  grid-template-columns: 220px minmax(0, 1fr);
  padding: 14px;
}

.promotion-live-media {
  align-items: center;
  background: var(--surface-muted);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  min-height: 150px;
  overflow: hidden;
}

.promotion-live-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.promotion-live-content h2 {
  font-size: 20px;
  line-height: 1.25;
  margin: 8px 0 6px;
}

.promotion-live-content p {
  color: var(--muted);
  margin: 0 0 12px;
}

.sku-picker {
  background: #f9fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.sku-picker-header {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.sku-picker-count {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  padding: 6px 10px;
  white-space: nowrap;
}

.sku-picker-tools {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  margin-bottom: 12px;
}

.sku-picker-tools input {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  min-height: 40px;
  padding: 8px 10px;
  width: 100%;
}

.sku-picker-list {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  max-height: 380px;
  overflow: auto;
}

.sku-picker-list #id_skus {
  display: grid;
}

.sku-picker-list #id_skus > div {
  border-bottom: 1px solid var(--line);
}

.sku-picker-list #id_skus > div:last-child {
  border-bottom: 0;
}

.sku-picker-list label {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  font-weight: 500;
  gap: 10px;
  line-height: 1.35;
  margin: 0;
  padding: 10px 12px;
}

.sku-picker-list input[type="checkbox"] {
  flex: 0 0 auto;
  height: 18px;
  margin-top: 1px;
  min-height: 0;
  width: 18px;
}

.sku-picker-list label:hover {
  background: #f9fafb;
}

.errorlist {
  color: #b42318;
  margin: 0 0 14px;
  padding-left: 18px;
}

@media (max-width: 760px) {
  .nav,
  .page-title,
  .nav-actions,
  .title-actions,
  .action-panel,
  .closed-week-notice {
    align-items: flex-start;
    flex-direction: column;
  }

  .stats-grid,
  .weekly-progress-panel,
  .banner-card,
  .promotion-card,
  .promotion-live-card,
  .alert-summary-grid,
  .prep-checklist,
  .summary-grid,
  .summary-grid.two-columns,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .search-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-form {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .filter-buttons,
  .stat-card-actions,
  .sku-picker-header,
  .weekly-entry-summary,
  .weekly-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .search-bar input,
  .search-bar .button {
    width: 100%;
  }

  .sku-picker-tools {
    grid-template-columns: 1fr;
  }

  .sku-picker-count {
    white-space: normal;
  }

  .weekly-action-buttons {
    justify-content: stretch;
  }

  .weekly-action-buttons button {
    justify-content: center;
    width: 100%;
  }
}
