:root {
  color-scheme: light;
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-subtle: #f8fafc;
  --text: #172033;
  --muted: #687386;
  --line: #dbe3ec;
  --blue: #1769aa;
  --blue-soft: #e9f3fb;
  --green: #159447;
  --green-soft: #e9f8ee;
  --amber: #ca7a12;
  --amber-soft: #fff6df;
  --red: #b42318;
  --red-soft: #ffebe9;
  --shadow: 0 8px 24px rgba(18, 38, 63, 0.07);
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

.login-view {
  align-items: center;
  background: linear-gradient(135deg, #eef5f6, #f8fafc);
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}
.login-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(18, 38, 63, 0.12);
  max-width: 430px;
  padding: 30px;
  width: 100%;
}
.login-logo { display: block; height: 82px; margin: 0 auto 18px; object-fit: contain; width: 120px; }
.login-card h1 { color: #12365d; font-size: 25px; margin: 0 0 8px; text-align: center; }
.login-card .eyebrow { text-align: center; }
.login-copy { color: var(--muted); font-size: 13px; line-height: 1.5; margin: 0 0 20px; text-align: center; }
.login-form { display: grid; gap: 12px; }
.login-form label { color: var(--text); display: grid; font-size: 12px; font-weight: 800; gap: 6px; }
.login-form input { border: 1px solid #c9d7e5; border-radius: 7px; padding: 10px 11px; width: 100%; }
.login-submit { justify-content: center; margin-top: 4px; width: 100%; }
.login-status { color: var(--red); font-size: 12px; min-height: 18px; margin: 0; }
.login-note { color: var(--muted); display: block; font-size: 11px; line-height: 1.5; margin-top: 12px; text-align: center; }

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

button, input, select, textarea { font: inherit; }
button, a, label.file-picker { -webkit-tap-highlight-color: transparent; }

.app-shell {
  width: min(1560px, calc(100vw - 28px));
  margin: 0 auto;
  padding: 18px 0 34px;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 4px 14px;
}
.brand-heading { align-items: center; display: flex; gap: 12px; min-width: 0; }
.brand-heading > div { min-width: 0; }
.brand-logo { display: block; flex: 0 0 auto; height: 88px; object-fit: contain; width: 88px; }

.page-header h1, .section-title h2, dialog h2 {
  margin: 0;
  letter-spacing: 0;
}

.page-header h1 { color: #12365d; font-size: 28px; line-height: 1.15; }
.eyebrow { color: var(--muted); font-size: 11px; font-weight: 800; margin: 0 0 3px; text-transform: uppercase; }
.manual-badge { background: var(--amber-soft); border: 1px solid #f2d99a; border-radius: 999px; color: #804d09; font-size: 12px; font-weight: 800; padding: 8px 11px; }
.user-identity { background: var(--surface-subtle); border: 1px solid var(--line); border-radius: 999px; color: #31506e; font-size: 11px; font-weight: 800; max-width: 190px; overflow: hidden; padding: 8px 11px; text-overflow: ellipsis; white-space: nowrap; }
.logout-btn { white-space: nowrap; }

.flow-strip {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  margin-bottom: 12px;
  padding: 13px 18px;
}

.flow-step { align-items: center; display: flex; gap: 10px; justify-content: center; min-width: 0; }
.flow-step div { min-width: 0; }
.flow-step strong, .flow-step small { display: block; }
.flow-step strong { font-size: 13px; }
.flow-step small { color: var(--muted); font-size: 11px; margin-top: 2px; }
.flow-arrow { color: #4f8fc4; font-size: 24px; }
.flow-icon { align-items: center; border-radius: 50%; color: white; display: inline-flex; flex: 0 0 38px; font-size: 12px; font-weight: 900; height: 38px; justify-content: center; }
.flow-icon.bee { background: #1873b9; }
.flow-icon.sheet, .flow-icon.done, .flow-icon.whatsapp { background: #1faa59; }
.flow-icon.app { background: #4d6278; }

.dashboard-layout {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(720px, 1.65fr) minmax(470px, 0.9fr);
  align-items: start;
}

.data-workspace { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.preview-panel, .filter-panel { grid-column: 1 / -1; }

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-width: 0;
  padding: 14px;
}

.section-title { align-items: flex-start; display: flex; gap: 9px; margin-bottom: 12px; }
.section-title.inline { align-items: center; }
.section-title h2 { color: #174d84; font-size: 15px; line-height: 1.25; text-transform: uppercase; }
.section-title p { color: var(--muted); font-size: 11px; line-height: 1.4; margin: 3px 0 0; }
.step-number { align-items: center; background: #2585cc; border-radius: 50%; color: white; display: inline-flex; flex: 0 0 25px; font-size: 13px; font-weight: 900; height: 25px; justify-content: center; }

.source-status {
  align-items: center;
  background: var(--surface-subtle);
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 9px 10px;
}

.source-status > div:first-child { align-items: center; display: grid; gap: 1px 8px; grid-template-columns: auto 1fr; min-width: 0; }
.source-status strong { font-size: 12px; }
.source-status > div:first-child small { color: var(--muted); font-size: 10px; grid-column: 2; overflow-wrap: anywhere; }
.source-actions { display: flex; flex: 0 0 auto; gap: 6px; }
.sync-summary { background: #f4f8fc; border-left: 3px solid #2585cc; color: #48637c; font-size: 10px; line-height: 1.45; margin: -4px 0 12px; padding: 7px 9px; }
.status-dot { border-radius: 50%; display: inline-block; grid-row: 1 / 3; height: 9px; width: 9px; }
.status-dot.waiting { background: var(--amber); }

.sheet-import > label, .filters label { color: #3c4858; display: block; font-size: 10px; font-weight: 800; }
.import-row { display: grid; gap: 7px; grid-template-columns: minmax(100px, 1fr) 105px 82px; margin-top: 5px; }
input, select, textarea { border: 1px solid #ccd7e3; border-radius: 5px; color: var(--text); background: white; }
input, select { height: 36px; min-width: 0; padding: 0 9px; }
input:focus, select:focus, textarea:focus, button:focus-visible, a:focus-visible { outline: 3px solid rgba(23, 105, 170, 0.18); outline-offset: 1px; }

.btn, .icon-btn, label.file-picker {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  text-decoration: none;
  white-space: nowrap;
}

.btn:disabled { cursor: not-allowed; opacity: .46; }
.btn.primary { background: var(--blue); color: white; }
.btn.success { background: var(--green); color: white; }
.btn.warning { background: var(--amber); color: white; }
.btn.danger { background: var(--red); color: white; }
.btn.outline { background: white; border-color: #cbd7e3; color: #344054; }
.btn.compact { min-height: 31px; padding: 0 10px; font-size: 11px; }
.whatsapp-btn { background: #16a34a; color: white; }
.icon-btn { background: white; border-color: var(--line); color: var(--blue); height: 31px; min-height: 31px; padding: 0; width: 31px; }

.import-fallback { align-items: center; color: var(--muted); display: flex; flex-wrap: wrap; font-size: 10px; gap: 7px; margin-top: 8px; }
.import-fallback a { color: var(--blue); font-weight: 800; }
label.file-picker { background: white; border-color: #cbd7e3; color: #344054; min-height: 31px; padding: 0 10px; }
.file-picker input { display: none; }

.table-wrap { border: 1px solid var(--line); overflow: auto; }
.price-table-wrap { max-height: 205px; }
.preview-table-wrap { max-height: 295px; }
.preview-table-wrap table { min-width: 1450px; }
.data-table { border-collapse: collapse; font-size: 11px; width: 100%; }
.data-table th, .data-table td { border-bottom: 1px solid #e4eaf0; padding: 7px 8px; text-align: left; vertical-align: top; }
.data-table th { background: #edf4fb; color: #334c66; font-size: 10px; position: sticky; top: 0; z-index: 1; }
.data-table td:not(:first-child) { white-space: nowrap; }
.data-table td.preview-cell { max-width: 330px; white-space: normal; }
.message-snippet { display: -webkit-box; line-height: 1.4; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.purchase-cell { min-width: 160px; white-space: normal !important; }
.purchase-cell small { color: var(--muted); display: block; line-height: 1.45; margin-top: 2px; }
.customer-badge { border-radius: 3px; display: inline-block; font-size: 9px; font-weight: 900; padding: 3px 5px; white-space: nowrap; }
.customer-badge.sheet { background: #e7f1fb; color: #175c91; }
.customer-badge.bee-new { background: #fff1d6; color: #8a540b; }
.contact-invalid { color: var(--red); font-weight: 800; }
.empty { color: var(--muted); padding: 22px 10px !important; text-align: center !important; }

.filter-content { align-items: end; display: grid; gap: 12px; grid-template-columns: minmax(0, 1fr) auto; }
.filters { display: grid; gap: 7px 9px; grid-column: 1 / -1; grid-template-columns: minmax(150px, 1.4fr) repeat(5, minmax(90px, .8fr)); }
.filters input, .filters select { display: block; font-size: 11px; height: 32px; margin-top: 4px; width: 100%; }
.summary-grid { display: grid; gap: 7px; grid-template-columns: repeat(3, minmax(85px, 1fr)); }
.metric { border: 1px solid var(--line); min-height: 58px; padding: 8px 9px; }
.metric span { color: var(--muted); display: block; font-size: 9px; }
.metric strong { display: block; font-size: 20px; margin-top: 2px; }
.metric.total strong { color: var(--blue); }
.metric.ready { background: var(--green-soft); border-color: #cbead5; }
.metric.ready strong, .metric.sent strong { color: var(--green); }
.metric.opened { background: var(--amber-soft); border-color: #f0dda9; }
.metric.opened strong { color: var(--amber); }
.metric.sent { background: #eef8f1; border-color: #cbead5; }
.metric.new { background: #fff8e8; border-color: #f0dda9; }
.metric.new strong { color: #9a5b07; }
.metric.authorized { background: var(--green-soft); border-color: #cbead5; }
.metric.authorized strong { color: var(--green); }
.metric.quarantine { background: #f4f0fb; border-color: #dcd1ee; }
.metric.quarantine strong { color: #6b4c9a; }
.metric.stopped { background: var(--red-soft); border-color: #fac7c2; }
.metric.stopped strong { color: var(--red); }
.metric.blocked { background: var(--red-soft); border-color: #fac7c2; }
.metric.blocked strong { color: var(--red); }
.filter-actions { display: grid; gap: 7px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.filter-actions .btn, .consent-restore { position: relative; }
.filter-actions .btn kbd, .consent-restore kbd { background: #f7fafb; border: 1px solid #cbd7dd; border-radius: 4px; color: #3c5363; font-family: ui-monospace, monospace; font-size: 9px; font-weight: 800; margin-left: 6px; padding: 3px 5px; }
.queue-context-menu { background: #fff; border: 1px solid #b9cbd2; border-radius: 7px; box-shadow: 0 12px 28px rgba(15, 30, 40, .18); display: grid; min-width: 238px; padding: 6px; position: fixed; z-index: 100; }
.queue-context-menu[hidden] { display: none; }
.queue-context-menu p { border-bottom: 1px solid #dce7ea; color: #0f6170; font-size: 10px; font-weight: 900; margin: 0 3px 5px; overflow: hidden; padding: 5px 4px 8px; text-overflow: ellipsis; white-space: nowrap; }
.queue-context-menu button { align-items: center; background: #fff; border: 0; border-radius: 4px; color: #263e4d; cursor: pointer; display: flex; font-size: 10px; font-weight: 800; gap: 8px; min-height: 31px; padding: 0 7px; text-align: left; }
.queue-context-menu button:hover:not(:disabled) { background: #eaf4f3; color: #0d6068; }
.queue-context-menu button:disabled { color: #93a1aa; cursor: not-allowed; opacity: .65; }
.queue-context-menu kbd { background: #f7fafb; border: 1px solid #cbd7dd; border-radius: 4px; color: #3c5363; font-family: ui-monospace, monospace; font-size: 9px; font-weight: 800; min-width: 25px; padding: 3px 5px; text-align: center; }
.queue-context-menu hr { border: 0; border-top: 1px solid #e1eaed; margin: 5px 3px; }
.contact-copy-actions { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 3px; }

.send-panel { position: sticky; top: 12px; }
.send-layout { display: grid; gap: 10px; grid-template-columns: 170px minmax(260px, 1fr); }
.queue-heading { align-items: center; display: flex; justify-content: space-between; margin-bottom: 7px; }
.queue-search { margin-bottom: 7px; }
.queue-search input { font-size: 10px; height: 31px; padding: 0 8px; width: 100%; }
.queue-tabs { border: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; min-width: 0; }
.queue-tab { background: white; border: 0; color: #526174; cursor: pointer; font-size: 9px; font-weight: 900; min-height: 29px; padding: 0 7px; }
.queue-tab + .queue-tab { border-left: 1px solid var(--line); }
.queue-tab.active { background: var(--blue-soft); color: #175c91; }
.queue-tab span { background: white; border-radius: 999px; display: inline-block; margin-left: 2px; min-width: 18px; padding: 2px 4px; }
.queue-list { display: grid; gap: 6px; max-height: 498px; overflow: auto; padding-right: 3px; }
.queue-item { background: white; border: 1px solid var(--line); cursor: pointer; display: grid; gap: 5px; padding: 9px; }
.queue-item.current { background: var(--green-soft); border-color: #8ed1a5; }
.queue-item-top { align-items: center; display: flex; gap: 6px; justify-content: space-between; }
.queue-item strong { font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.queue-item small { color: var(--muted); font-size: 9px; }
.queue-status { border-radius: 999px; display: inline-block; font-size: 8px; font-weight: 900; padding: 3px 6px; }
.status-pending { background: #eef2f6; color: #475467; }
.status-opened { background: var(--amber-soft); color: #8a540b; }
.status-sent { background: var(--green-soft); color: #13733b; }
.status-skipped { background: var(--red-soft); color: var(--red); }
.status-blocked { background: #fde7e4; color: var(--red); }
.status-granted { background: var(--green-soft); color: #13733b; }
.status-unknown { background: #f4f0fb; color: #6b4c9a; }
.status-stopped { background: var(--red-soft); color: var(--red); }

.phone-frame { border: 1px solid #cbd7e3; min-height: 500px; overflow: hidden; }
.phone-bar { align-items: center; background: #f2f5f7; border-bottom: 1px solid #dbe3e9; display: grid; gap: 9px; grid-template-columns: auto 1fr auto; min-height: 58px; padding: 9px 10px; }
.phone-bar div { min-width: 0; }
.phone-bar strong, .phone-bar small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.phone-bar strong { font-size: 12px; }
.phone-bar small { color: var(--muted); font-size: 9px; margin-top: 2px; }
.avatar { align-items: center; background: #2d9956; border-radius: 50%; color: white; display: inline-flex; font-size: 10px; font-weight: 900; height: 33px; justify-content: center; width: 33px; }
.level-pill { background: var(--blue-soft); border-radius: 999px; color: #175c91; font-size: 10px; font-weight: 900; padding: 5px 7px; }
.phone-badges { align-items: flex-end; display: flex; flex-direction: column; gap: 4px; }
.consent-badge { border-radius: 999px; display: inline-block; font-size: 8px; font-weight: 900; padding: 4px 7px; white-space: nowrap; }
.consent-granted { background: var(--green-soft); color: #13733b; }
.consent-unknown { background: #f4f0fb; color: #6b4c9a; }
.consent-stopped { background: var(--red-soft); color: var(--red); }
.chat-area { background: #efeae2; min-height: 400px; padding: 18px 12px; }
.message-bubble { background: #d9fdd3; box-shadow: 0 1px 1px rgba(0,0,0,.08); margin-left: auto; max-width: 94%; padding: 10px 10px 6px; }
#messageText, .message-preview { background: transparent; border: 0; display: block; font-size: 11px; line-height: 1.45; min-height: 330px; outline: 0; padding: 0; width: 100%; }
#messageText[hidden], .message-preview[hidden] { display: none !important; }
#messageText { resize: none; }
#messageText:disabled { color: #667085; }
.message-preview { color: var(--text); cursor: text; overflow-wrap: anywhere; white-space: normal; }
.message-preview strong { font-weight: 800; }.message-preview em { font-style: italic; }.message-preview s { text-decoration: line-through; }.message-preview strong em, .message-preview em strong { font-weight: 800; font-style: italic; }.message-preview strong s, .message-preview s strong { font-weight: 800; text-decoration: line-through; }.message-preview em s, .message-preview s em { font-style: italic; text-decoration: line-through; }.message-preview strong em s, .message-preview strong s em, .message-preview em strong s, .message-preview em s strong, .message-preview s strong em, .message-preview s em strong { font-weight: 800; font-style: italic; text-decoration: line-through; }.message-preview code { background: rgba(15, 30, 40, .08); border-radius: 3px; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .95em; padding: 1px 3px; }.message-preview-empty { color: #667085; }
.message-time { color: #667085; display: block; font-size: 8px; text-align: right; }
.phone-meta { align-items: center; background: #f8fafc; border-top: 1px solid var(--line); display: flex; font-size: 9px; justify-content: space-between; min-height: 40px; padding: 8px 10px; }
.phone-meta span { color: var(--muted); }
.consent-meta { background: #f8fafc; border-top: 1px solid var(--line); color: #59677a; font-size: 9px; line-height: 1.45; min-height: 34px; padding: 7px 10px; }
.action-heading { align-items: baseline; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 7px; justify-content: space-between; margin-top: 14px; padding: 12px 1px 0; }
.action-heading span { color: var(--text); font-size: 11px; font-weight: 800; }
.action-heading small { color: var(--muted); font-size: 9px; }
.action-heading-send { margin-top: 16px; }
.consent-actions { display: grid; gap: 8px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 8px; }
.consent-actions .btn { align-items: center; justify-content: flex-start; min-height: 44px; padding: 8px 42px 8px 11px; position: relative; text-align: left; white-space: normal; }
.consent-actions .btn::after { align-items: center; background: rgba(255, 255, 255, .72); border: 1px solid rgba(38, 71, 87, .18); border-radius: 4px; color: #314b60; content: attr(data-shortcut); display: inline-flex; font-family: ui-monospace, monospace; font-size: 9px; font-weight: 800; height: 22px; justify-content: center; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); width: 24px; }
.consent-actions .btn.danger::after { background: rgba(255, 255, 255, .5); color: #812e28; }
.operator-actions { display: grid; gap: 8px; grid-template-columns: minmax(150px, 1fr) minmax(190px, 1.35fr) minmax(110px, .72fr); margin-top: 8px; }
.operator-note { background: var(--amber-soft); border: 1px solid #f0dda9; border-radius: 8px; font-size: 10px; line-height: 1.5; margin-top: 12px; padding: 11px 14px; }
.operator-note ol { margin: 5px 0 0; padding-left: 18px; }

.alert { border: 1px solid transparent; font-size: 12px; line-height: 1.45; margin-bottom: 12px; padding: 10px 12px; }
.alert.info { background: var(--blue-soft); border-color: #c8e0f1; color: #174e78; }
.alert.warn { background: var(--amber-soft); border-color: #f0dda9; color: #80500e; }
.alert.error { background: var(--red-soft); border-color: #fac7c2; color: var(--red); }
.hidden { display: none; }

dialog { border: 1px solid var(--line); box-shadow: 0 24px 80px rgba(15, 23, 42, .2); max-width: 520px; padding: 0; width: calc(100vw - 32px); }
dialog::backdrop { background: rgba(24, 35, 50, .45); }
dialog form { padding: 18px; }
.dialog-heading { align-items: flex-start; display: flex; justify-content: space-between; }
dialog h2 { font-size: 20px; }
dialog p, dialog li { color: #475467; font-size: 13px; line-height: 1.55; }
dialog ul { padding-left: 20px; }
.api-fields { display: grid; gap: 12px; margin: 16px 0; }
.api-fields label { color: #344054; display: grid; font-size: 12px; font-weight: 800; gap: 5px; }
.api-fields input { width: 100%; }
.api-fields select, .api-fields textarea { width: 100%; }
.api-fields textarea { min-height: 78px; padding: 8px 9px; resize: vertical; }
.api-fields small { color: var(--muted); font-size: 10px; font-weight: 500; }
.api-status { border: 1px solid var(--line); font-size: 12px; line-height: 1.45; margin-bottom: 14px; padding: 10px; }
.api-status.success { background: var(--green-soft); border-color: #b7dfc5; color: #126c37; }
.api-status.error { background: var(--red-soft); border-color: #fac7c2; color: var(--red); }
.api-status.info { background: var(--blue-soft); border-color: #c8e0f1; color: #174e78; }
.dialog-actions { display: flex; gap: 8px; justify-content: flex-end; }

@media (max-width: 1180px) {
  .dashboard-layout { grid-template-columns: 1fr; }
  .send-panel { position: static; }
  .filter-content { grid-template-columns: 1fr; }
  .filter-actions { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .app-shell { width: min(100% - 16px, 760px); padding-top: 10px; }
  .page-header { align-items: flex-start; flex-direction: column; }
  .page-header h1 { font-size: 23px; }
  .flow-strip { grid-template-columns: 1fr; }
  .flow-arrow { display: none; }
  .flow-step { justify-content: flex-start; }
  .data-workspace { grid-template-columns: 1fr; }
  .preview-panel, .filter-panel { grid-column: auto; }
  .source-status { align-items: stretch; flex-direction: column; gap: 8px; }
  .source-actions .btn { flex: 1 1 0; }
  .import-row, .filters, .summary-grid, .send-layout, .consent-actions, .operator-actions { grid-template-columns: 1fr; }
  .queue-list { max-height: 250px; }
  .phone-frame { min-height: 460px; }
  .chat-area { min-height: 350px; }
  #messageText { min-height: 285px; }
}

/* Revisi tata letak: layar persiapan yang padat dan mode kirim yang fokus. */
:root {
  --bg: #eef2f4;
  --surface: #ffffff;
  --surface-subtle: #fafcfc;
  --text: #0f1e28;
  --muted: #637887;
  --line: #dce4e9;
  --blue: #0d5a60;
  --blue-soft: #e0eded;
  --green: #1b7350;
  --green-soft: #e4f0ea;
  --amber: #a9741a;
  --amber-soft: #fbf2e1;
  --red: #9c3a33;
  --red-soft: #f7ecea;
  --shadow: 0 1px 2px rgba(15, 30, 40, .04), 0 16px 40px -24px rgba(15, 30, 40, .24);
}

body { min-width: 0; padding: 0; font-size: 13px; }
.app-shell { width: 100%; min-height: 100vh; background: var(--surface); border: 0; border-radius: 0; box-shadow: none; overflow: hidden; padding: 0 0 18px; }
.page-header { padding: 18px 22px 8px; }
.page-header h1 { color: var(--text); font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.eyebrow { color: var(--muted); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 10px; letter-spacing: .14em; }
.header-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.zoom-controls { align-items: center; display: inline-flex; gap: 3px; }
.zoom-btn, .zoom-value, .zoom-full { background: #fff; border: 1px solid var(--line); border-radius: 6px; color: var(--blue); cursor: pointer; font-family: ui-monospace, monospace; font-size: 10px; font-weight: 700; height: 28px; padding: 0 8px; }
.zoom-btn { font-size: 15px; line-height: 1; min-width: 28px; padding: 0; }
.zoom-value { min-width: 43px; }
.zoom-full { font-family: inherit; }
.zoom-btn:hover, .zoom-value:hover, .zoom-full:hover { background: var(--blue-soft); }
.manual-badge, .outlet-badge { border-radius: 999px; font-size: 10px; font-weight: 700; padding: 6px 10px; }
.manual-badge { background: var(--amber-soft); border-color: #ead39b; color: #82580f; }
.outlet-badge { background: var(--blue-soft); border: 1px solid #cbe0e1; color: var(--blue); text-transform: uppercase; }

.progress-rail { align-items: center; display: grid; gap: 14px; grid-template-columns: auto minmax(120px, 1fr) auto; margin: 0 22px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 10px; background: #fafcfc; }
.progress-total { align-items: baseline; display: flex; gap: 5px; white-space: nowrap; }
.progress-total strong { font-family: Georgia, serif; font-size: 20px; font-weight: 500; }
.progress-total span, .progress-rail p { color: var(--muted); font-size: 11px; margin: 0; }
.progress-track { height: 7px; background: #e8eef0; border-radius: 999px; overflow: hidden; }
.progress-track span { background: var(--blue); border-radius: inherit; display: block; height: 100%; transition: width .2s ease; width: 0; }
.workspace-tabs { display: flex; gap: 20px; margin: 13px 22px 0; border-bottom: 1px solid var(--line); }
.workspace-tab { appearance: none; background: transparent; border: 0; border-bottom: 2px solid transparent; color: var(--muted); cursor: pointer; font-size: 12px; font-weight: 700; padding: 0 0 10px; }
.workspace-tab.active { border-bottom-color: var(--blue); color: var(--blue); }
.workspace-tab span { background: var(--bg); border-radius: 999px; font-family: ui-monospace, monospace; font-size: 10px; margin-left: 4px; padding: 2px 6px; }
.workspace-tab.active span { background: var(--blue-soft); }
.workspace-tab.whatsapp-web-tab { color: #137a46; }
.workspace-tab.whatsapp-web-tab:hover { border-bottom-color: #1d9b59; color: #137a46; }
.workspace-tab.whatsapp-web-tab span { background: #e5f5eb; color: #137a46; }

.flow-strip { box-shadow: none; margin: 12px 22px; padding: 9px 13px; background: #fafcfc; }
.flow-step strong { color: var(--text); font-size: 11px; }.flow-step small { font-size: 10px; }.flow-icon { flex-basis: 30px; height: 30px; font-size: 9px; background: var(--blue) !important; }.flow-icon.sheet, .flow-icon.done, .flow-icon.whatsapp { background: var(--green) !important; }.flow-arrow { color: #95adb7; font-size: 18px; }

.dashboard-layout { gap: 15px; grid-template-columns: minmax(0, 1.6fr) minmax(400px, .9fr); padding: 0 22px; }
.data-workspace { gap: 12px; }.panel { box-shadow: none; border-radius: 10px; padding: 0; }.source-panel, .price-panel, .preview-panel, .filter-panel { padding: 14px; }
.section-title { margin-bottom: 10px; }.section-title h2 { color: var(--text); font-family: Georgia, serif; font-size: 16px; font-weight: 500; letter-spacing: 0; text-transform: none; }.section-title p { font-size: 10.5px; }.step-number { background: var(--blue); flex-basis: 24px; height: 24px; font-size: 11px; }
.template-button { margin-left: auto; }
.template-fields { grid-template-columns: 1fr 1fr; }
.template-fields label:last-child { grid-column: 1 / -1; }
.template-help { color: var(--muted); font-family: ui-monospace, monospace; font-size: 10px !important; margin: -4px 0 14px; }
.template-library { align-items: end; display: grid; gap: 8px; grid-template-columns: minmax(145px, 1fr) auto minmax(145px, 1fr) auto auto; margin: 0 0 10px; }
.template-library label { color: #3c4858; display: grid; font-size: 10px; font-weight: 800; gap: 4px; min-width: 0; }
.template-library input, .template-library select { height: 32px; }
.template-format-toolbar { display: flex; gap: 6px; margin: 0 0 10px; }
.format-btn { align-items: center; background: #f4f7f9; border: 1px solid #d6e0e5; border-radius: 5px; color: #314b60; cursor: pointer; display: inline-flex; font-family: Georgia, serif; font-size: 14px; font-weight: 700; height: 30px; justify-content: center; width: 30px; }
.format-btn:hover { background: #e8f0f4; }.format-btn.italic { font-style: italic; }.format-btn.underline { text-decoration: underline; }.format-btn.strike { text-decoration: line-through; }
.template-format-info { color: #526975; font-size: 10px !important; line-height: 1.35; margin: 8px 0 0; min-height: 14px; }
.promo-image-tools { align-items: center; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; padding-top: 12px; }
.promo-image-meta { color: var(--muted); font-size: 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.promo-image-preview { border: 1px solid var(--line); border-radius: 6px; display: block; max-height: 104px; max-width: 160px; object-fit: contain; }
.source-status, .sync-summary { border-radius: 7px; }.sync-summary { border-left-color: var(--blue); background: #f5f9f9; color: #526975; }
.btn, .icon-btn, label.file-picker { border-radius: 7px; font-size: 11px; }.btn.primary { background: var(--blue); }.btn.success { background: var(--green); }.btn.warning { background: var(--amber); }.btn.danger { background: var(--red); }.whatsapp-btn { background: var(--green); }
.data-table th { background: #f6f9fa; color: var(--muted); font-family: ui-monospace, monospace; font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }.data-table td { color: #475d6a; }.data-table tr:hover td { background: #fbfdfd; }.price-table-wrap { max-height: 235px; }.preview-table-wrap { max-height: 355px; }
.preview-toolbar, .preview-pagination { align-items: center; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; margin: -1px 0 10px; }
.preview-toolbar > div { align-items: center; display: flex; flex-wrap: wrap; gap: 8px; }
.preview-toolbar small, .preview-pagination > span { color: var(--muted); font-size: 10px; }
.preview-toolbar label { align-items: center; color: var(--muted); display: flex; font-size: 10px; font-weight: 700; gap: 6px; }
.preview-toolbar select { background: #fff; border: 1px solid var(--line); border-radius: 6px; color: var(--text); font-size: 11px; height: 30px; padding: 0 6px; }
.preview-pagination { border-top: 1px solid var(--line); margin: 10px 0 0; padding-top: 10px; }
.preview-pagination > div { display: flex; gap: 6px; }
.filters label { font-size: 9px; }.filters input, .filters select { border-radius: 7px; }.metric { border-radius: 7px; min-height: 54px; }.metric strong { font-family: Georgia, serif; font-size: 20px; font-weight: 500; }.filter-actions .btn:first-child { min-height: 42px; }

.send-panel { background: #fbfcfd; padding: 14px; }.send-layout { grid-template-columns: 165px minmax(245px, 1fr); }.queue-item { border-radius: 7px; }.queue-item.current { background: var(--green-soft); border-color: #a4d3b5; }.queue-tab.active { background: var(--blue-soft); color: var(--blue); }
.phone-frame { border-radius: 10px; background: #fff; }.phone-bar { background: #f5f8f8; }.chat-area { background: #f1f5f0; }.message-bubble { background: #e7f4e3; border-radius: 4px 12px 12px 12px; max-width: 96%; }.avatar { background: var(--blue); }.level-pill { background: var(--blue-soft); color: var(--blue); }.operator-note { border-radius: 8px; }.operator-actions .btn { min-height: 38px; }

/* Antrean hanya ditampilkan pada Mode Kirim (F1), bukan di halaman persiapan. */
.app-shell:not(.mode-send) .send-panel { display: none; }
.app-shell:not(.mode-send) .dashboard-layout { grid-template-columns: minmax(0, 1fr); }

.app-shell.mode-send .data-workspace { display: none; }
.app-shell.mode-send .dashboard-layout { display: block; padding: 0 22px; }
.app-shell.mode-send .send-panel { position: static; }
.app-shell.mode-send .send-panel > .section-title { border-bottom: 1px solid var(--line); padding: 4px 4px 13px; }
.app-shell.mode-send .send-layout {
  grid-template-columns: minmax(230px, 260px) minmax(0, 1fr);
  justify-content: stretch;
  max-width: none;
  margin: 0;
}
.app-shell.mode-send .queue-column { min-width: 0; }
.app-shell.mode-send .queue-list {
  min-width: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.app-shell.mode-send .queue-item {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: 14.2857% minmax(0, 1fr);
  max-width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
}
.app-shell.mode-send .queue-index {
  align-items: center;
  background: #edf0f2;
  color: #526174;
  display: flex;
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
}
.app-shell.mode-send .queue-index-waiting { background: #edf0f2; color: #526174; }
.app-shell.mode-send .queue-index-opened { background: #fff0d8; color: #966313; }
.app-shell.mode-send .queue-index-sent { background: #dff3e5; color: #13733b; }
.app-shell.mode-send .queue-index-skipped { background: #f8d5d2; color: #b42318; }
.app-shell.mode-send .queue-index-unknown { background: #fff0c7; color: #956700; }
.app-shell.mode-send .queue-index-stopped { background: #f6dfe2; color: #a43a47; }
.app-shell.mode-send .queue-index-blocked { background: #f4d3cf; color: #ad2d20; }
.app-shell.mode-send .queue-item-content { display: grid; gap: 4px; min-width: 0; padding: 8px; }
.app-shell.mode-send .queue-item-top { min-width: 0; }
.app-shell.mode-send .queue-item strong { min-width: 0; }
.app-shell.mode-send .queue-status {
  flex: 0 1 auto;
  max-width: 62px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.app-shell.mode-send .queue-item small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.app-shell.mode-send .queue-list { max-height: 590px; }
.app-shell.mode-send .phone-frame { min-height: 590px; }.app-shell.mode-send .chat-area { min-height: 470px; }.app-shell.mode-send #messageText, .app-shell.mode-send .message-preview { font-size: 12px; min-height: 390px; }
.app-shell.mode-send .consent-actions, .app-shell.mode-send .operator-actions, .app-shell.mode-send .operator-note { max-width: none; margin-left: 0; margin-right: 0; }
.app-shell.mode-send .flow-strip { display: none; }

.report-workspace {
  display: none;
  margin: 12px 22px 0;
}
.app-shell.mode-report .dashboard-layout,
.app-shell.mode-report .flow-strip { display: none; }
.app-shell.mode-report .report-workspace { display: block; }

.data-hub-workspace { display: none; margin: 0 22px; }
.app-shell.mode-data .dashboard-layout,
.app-shell.mode-data .flow-strip { display: none; }
.app-shell.mode-data .data-hub-workspace { display: block; }
.data-hub-table-card { margin-top: 12px; padding: 14px; }
.data-hub-toolbar { align-items: end; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.data-hub-toolbar label { color: var(--muted); display: grid; font-size: 10px; font-weight: 700; gap: 5px; }
.data-hub-toolbar input, .data-hub-toolbar select { background: #fff; border: 1px solid var(--line); border-radius: 6px; color: var(--text); font-size: 12px; height: 32px; padding: 0 8px; }
.data-hub-toolbar label:first-child { min-width: 260px; }
.data-hub-table-wrap { max-height: 540px; }
.data-hub-help { color: var(--muted); font-size: 10px; margin: 0 0 10px; }
.data-hub-row { cursor: pointer; }
.data-hub-row:hover td { background: #edf7f5; }
.data-hub-row:focus-visible { outline: 2px solid #1769aa; outline-offset: -2px; }
.bee-level-missing { color: #9a6700; font-size: 10px; font-style: italic; font-weight: 800; }
.culture-workspace { display: none; margin: 12px 22px 0; }
.app-shell.mode-culture .dashboard-layout,
.app-shell.mode-culture .flow-strip { display: none; }
.app-shell.mode-culture .culture-workspace { display: block; }
.culture-heading { align-items: center; background: white; border: 1px solid var(--line); border-radius: 8px; display: flex; gap: 16px; padding: 16px; }
.culture-logo { display: block; flex: 0 0 auto; height: 104px; object-fit: contain; width: 104px; }
.culture-heading h2 { color: var(--text); font-family: Georgia, serif; font-size: 23px; font-weight: 500; margin: 2px 0 5px; }
.culture-heading p { color: var(--muted); font-size: 11px; line-height: 1.45; margin: 0; }
.culture-grid { display: grid; gap: 10px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 12px; }
.culture-card { background: white; border: 1px solid var(--line); border-radius: 8px; min-width: 0; padding: 14px; }
.culture-card.responsive { border-top: 3px solid #1769aa; }.culture-card.productive { border-top: 3px solid #159447; }.culture-card.compliant { border-top: 3px solid #ca7a12; }.culture-card.synergy { border-top: 3px solid #b42318; }
.culture-letter { align-items: center; border-radius: 50%; color: white; display: inline-flex; font-family: Georgia, serif; font-size: 17px; font-weight: 700; height: 30px; justify-content: center; width: 30px; }
.responsive .culture-letter { background: #1769aa; }.productive .culture-letter { background: #159447; }.compliant .culture-letter { background: #ca7a12; }.synergy .culture-letter { background: #b42318; }
.culture-card h3 { color: var(--text); font-family: Georgia, serif; font-size: 16px; font-weight: 500; margin: 10px 0 6px; }
.culture-card p { color: var(--muted); font-size: 11px; line-height: 1.5; margin: 0; }
.culture-practice { background: #f7faf9; border: 1px solid #d7e7df; border-left: 4px solid var(--green); display: grid; gap: 0; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 12px; }
.culture-practice div { min-width: 0; padding: 13px; }.culture-practice div + div { border-left: 1px solid #d7e7df; }
.culture-practice strong, .culture-practice span { display: block; }.culture-practice strong { color: var(--text); font-size: 12px; }.culture-practice span { color: var(--muted); font-size: 10px; line-height: 1.5; margin-top: 4px; }
.report-heading {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.report-heading h2 { font-family: Georgia, serif; font-size: 23px; font-weight: 500; margin: 2px 0 5px; }
.report-heading p { color: var(--muted); font-size: 11px; margin: 0; }
.report-metrics { display: grid; gap: 10px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 12px; }
.report-metric { background: white; border: 1px solid var(--line); border-radius: 8px; min-width: 0; padding: 13px; }
.report-metric span, .report-metric small { color: var(--muted); display: block; font-size: 10px; }
.report-metric strong { color: var(--text); display: block; font-family: Georgia, serif; font-size: 25px; font-weight: 500; margin: 5px 0; }
.report-metric.report-sent { border-top: 3px solid #159447; }
.report-metric.report-rate { border-top: 3px solid #1769aa; }
.report-metric.report-waiting { border-top: 3px solid #9aa7b2; }
.report-metric.report-consent { border-top: 3px solid #ca7a12; }
.report-grid { display: grid; gap: 12px; grid-template-columns: minmax(0, 1fr) minmax(430px, 1.05fr); }
.report-card { background: white; border: 1px solid var(--line); border-radius: 8px; min-width: 0; padding: 14px; }
.report-card-heading { align-items: flex-start; display: flex; gap: 12px; justify-content: space-between; margin-bottom: 12px; }
.report-card-heading h3 { font-family: Georgia, serif; font-size: 16px; font-weight: 500; margin: 0; }
.report-card-heading p { color: var(--muted); font-size: 10px; margin: 3px 0 0; }
.chart-legend { display: flex; flex-wrap: wrap; gap: 7px; justify-content: flex-end; }
.chart-legend span { color: var(--muted); font-size: 9px; }
.chart-legend span::before { border-radius: 2px; content: ""; display: inline-block; height: 8px; margin-right: 4px; width: 8px; }
.legend-sent::before { background: #159447; }.legend-skipped::before { background: #c45046; }.legend-waiting::before { background: #aab4bd; }.legend-quarantine::before { background: #d39b2a; }
.service-chart { align-items: flex-end; display: grid; gap: 8px; grid-template-columns: repeat(7, minmax(0, 1fr)); min-height: 188px; padding: 9px 3px 0; }
.service-chart .empty { grid-column: 1 / -1; }
.service-chart-day { display: grid; gap: 6px; grid-template-rows: 144px auto; min-width: 0; text-align: center; }
.service-bars { align-items: end; border-bottom: 1px solid #dce4e9; display: flex; gap: 3px; height: 144px; justify-content: center; }
.service-bar { border-radius: 3px 3px 0 0; display: block; max-height: 100%; min-height: 2px; width: min(12px, 20%); }
.service-bar.sent { background: #159447; }.service-bar.skipped { background: #c45046; }.service-bar.waiting { background: #aab4bd; }.service-bar.quarantine { background: #d39b2a; }
.service-chart-day small { color: var(--muted); font-family: ui-monospace, monospace; font-size: 9px; }
.comparison-table-wrap { border: 1px solid var(--line); overflow-x: auto; }
.comparison-table { border-collapse: collapse; font-size: 11px; min-width: 490px; width: 100%; }
.comparison-table th, .comparison-table td { border-bottom: 1px solid #e4eaf0; padding: 8px 9px; text-align: right; }
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; }
.comparison-table th { background: #f6f9fa; color: var(--muted); font-family: ui-monospace, monospace; font-size: 9px; text-transform: uppercase; }
.comparison-table tr:last-child td { border-bottom: 0; }
.report-note { margin-top: 12px; padding: 11px 14px; }
.report-note strong { color: var(--text); font-size: 11px; }.report-note p { color: var(--muted); font-size: 10px; margin: 4px 0 0; }

/* Mode kirim mengutamakan pemeriksaan pelanggan dan aksi berurutan. */
.keyboard-hint, .send-heading-keys {
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 9px;
  padding: 5px 7px;
}
.send-heading { align-items: center; }
.send-heading-keys { margin-left: auto; }
.customer-context {
  background: #fbfcfd;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.customer-context > div { min-width: 0; padding: 9px 10px; }
.customer-context > div + div { border-left: 1px solid var(--line); }
.customer-context span, .customer-context strong { display: block; }
.customer-context span { color: var(--muted); font-size: 9px; }
.customer-context strong {
  color: var(--text);
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 500;
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.message-label {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  margin: -7px 0 8px;
}
.message-label span { color: var(--text); font-family: Georgia, serif; font-size: 13px; }
.message-label small { color: var(--muted); font-size: 9px; }
.phone-contact { min-width: 0; }
.copy-btn {
  background: #eef2f4;
  border: 1px solid #d6e0e5;
  border-radius: 5px;
  color: #3c5363;
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  margin-top: 5px;
  padding: 5px 7px;
}
.copy-btn:hover:not(:disabled) { background: #e1e8ec; }
.copy-btn:disabled { cursor: not-allowed; opacity: .5; }
.copy-btn kbd {
  background: #ffffff;
  border: 1px solid #cbd7dd;
  border-radius: 3px;
  color: #3c5363;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 8px;
  margin-left: 3px;
  padding: 1px 3px;
}
.message-tools { align-items: center; display: flex; gap: 7px; }
.message-tools .copy-btn { margin-top: 0; }
.operator-actions .btn {
  align-items: center;
  justify-content: flex-start;
  line-height: 1.15;
  min-height: 52px;
  padding: 8px 9px;
  text-align: left;
  white-space: normal;
}
.operator-actions .btn > span { display: grid; gap: 3px; min-width: 0; }
.operator-actions .btn small { font-size: 9px; font-weight: 500; line-height: 1.15; opacity: .82; }
.operator-actions kbd {
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 4px;
  color: inherit;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  min-width: 32px;
  padding: 4px;
  text-align: center;
}

@media (max-width: 1050px) {
  .dashboard-layout { grid-template-columns: 1fr; }.send-panel { position: static; }
  .report-grid { grid-template-columns: 1fr; }
  .culture-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1450px) {
  .app-shell.mode-send .operator-actions { grid-template-columns: minmax(150px, 1fr) minmax(180px, 1.25fr); }
  .app-shell.mode-send #skipBtn { grid-column: 1 / -1; min-height: 42px; }
}
@media (max-width: 760px) {
  body { padding-top: 8px; }.app-shell { width: 100%; }.page-header { align-items: flex-start; flex-direction: column; padding: 15px 14px 8px; }.header-actions { justify-content: flex-start; }.zoom-controls { width: 100%; }.zoom-full { margin-left: auto; }.progress-rail { grid-template-columns: 1fr; gap: 6px; margin: 0 14px; }.workspace-tabs { gap: 13px; margin: 12px 14px 0; overflow-x: auto; }.workspace-tab { white-space: nowrap; }.flow-strip, .dashboard-layout, .data-hub-workspace { margin-left: 14px; margin-right: 14px; }.dashboard-layout { padding: 0; }.app-shell.mode-send .dashboard-layout { padding: 0 14px; }.app-shell.mode-send .send-layout { grid-template-columns: 1fr; }.app-shell.mode-send .queue-list { max-height: 220px; }.app-shell.mode-send .chat-area { min-height: 360px; }.app-shell.mode-send #messageText, .app-shell.mode-send .message-preview { min-height: 285px; }.preview-toolbar { align-items: flex-start; flex-direction: column; }.preview-pagination { align-items: flex-start; flex-direction: column; }.data-hub-toolbar label:first-child { min-width: min(100%, 260px); }
  .keyboard-hint, .send-heading-keys { display: none; }
  .customer-context { grid-template-columns: 1fr; }
  .customer-context > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .template-fields { grid-template-columns: 1fr; }
  .template-fields label:last-child { grid-column: auto; }
  .template-library { grid-template-columns: 1fr 1fr auto; }
  .template-library label:first-child { grid-column: 1 / -1; }.template-library label:nth-child(3) { grid-column: 1 / 3; }
  .report-workspace, .culture-workspace { margin-left: 14px; margin-right: 14px; }
  .report-heading { flex-direction: column; }.report-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .report-grid { grid-template-columns: 1fr; }.comparison-table { min-width: 440px; }
  .brand-logo { height: 72px; width: 72px; }.culture-heading { align-items: flex-start; flex-direction: column; }.culture-logo { height: 92px; width: 92px; }.culture-grid, .culture-practice { grid-template-columns: 1fr; }.culture-practice div + div { border-left: 0; border-top: 1px solid #d7e7df; }
}
