:root {
  --kfc-red: #d71920;
  --kfc-red-dark: #9d1015;
  --ink: #171717;
  --muted: #6f6f73;
  --soft: #f5f2ef;
  --paper: #ffffff;
  --line: #e3ded8;
  --charcoal: #272525;
  --gold: #f2b544;
  --green: #1f8a5b;
  --blue: #376cc8;
  --orange: #c96c1f;
  --danger-bg: #fff0f0;
  --success-bg: #eef9f3;
  --warning-bg: #fff6dd;
  --blue-bg: #eef4ff;
  --shadow: 0 16px 42px rgba(23, 23, 23, 0.09);
  --radius: 8px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.05) 0 14px, transparent 14px 34px),
    var(--soft);
}

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

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 22px 18px;
  color: #fff;
  background: var(--charcoal);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(3, 12px);
  gap: 4px;
  width: 54px;
  height: 54px;
  padding: 8px;
  background: #fff;
  border-radius: var(--radius);
}

.brand-mark span {
  border-radius: 2px;
  background: var(--kfc-red);
}

.brand-mark span:nth-child(2) {
  background: #fff;
  border: 1px solid var(--kfc-red);
}

.nav-list {
  display: grid;
  gap: 6px;
}

.nav-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-align: left;
}

.nav-item:hover,
.nav-item.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}

.scope-panel {
  margin-top: auto;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.scope-panel strong,
.scope-panel span {
  display: block;
}

.scope-panel span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.4;
}

.main {
  min-width: 0;
  padding: 24px;
}

.topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: -24px -24px 22px;
  padding: 20px 24px;
  background: rgba(245, 242, 239, 0.9);
  border-bottom: 1px solid rgba(227, 222, 216, 0.9);
  backdrop-filter: blur(18px);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 900px;
  font-size: 24px;
  line-height: 1.2;
}

h2 {
  font-size: 22px;
  line-height: 1.2;
}

h3 {
  font-size: 16px;
  line-height: 1.3;
}

.eyebrow {
  margin-bottom: 6px;
  color: var(--kfc-red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.search-box {
  display: grid;
  grid-template-columns: 18px minmax(180px, 280px);
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.select-control {
  display: grid;
  grid-template-columns: auto minmax(140px, 190px);
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.select-control span,
.filter-bar label span {
  color: var(--muted);
  font-size: 12px;
}

select {
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.icon-button,
.text-button,
.primary-button,
.secondary-button,
.queue-tab {
  border-radius: var(--radius);
}

.icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--charcoal);
  border: 1px solid transparent;
}

.icon-button span {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  color: #fff;
  background: var(--kfc-red);
  border: 2px solid var(--soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.text-button,
.secondary-button {
  min-height: 36px;
  padding: 0 12px;
  color: var(--charcoal);
  background: var(--paper);
  border: 1px solid var(--line);
}

.text-button:hover,
.secondary-button:hover {
  border-color: #c7bdb4;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  color: #fff;
  background: var(--kfc-red);
  border: 1px solid var(--kfc-red);
}

.primary-button:hover {
  background: var(--kfc-red-dark);
}

.view {
  display: none;
}

.view.is-active {
  display: block;
}

.notification-drawer {
  display: none;
  margin-bottom: 18px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.notification-drawer.is-open {
  display: block;
}

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

.notification-item {
  display: grid;
  gap: 8px;
  min-height: 96px;
  padding: 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--kfc-red);
  border-radius: var(--radius);
}

.notification-item span {
  color: var(--muted);
  font-size: 12px;
}

.intake-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
  gap: 16px;
  margin-bottom: 16px;
}

.brand-visual {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--charcoal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brand-visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.brand-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 18, 17, 0.84), rgba(20, 18, 17, 0.38) 55%, rgba(20, 18, 17, 0.08));
}

.brand-visual-copy {
  position: absolute;
  z-index: 1;
  top: 24px;
  left: 24px;
  width: min(480px, calc(100% - 48px));
  color: #fff;
}

.brand-visual-copy .eyebrow {
  color: #ffd9d9;
}

.brand-visual-copy h2 {
  font-size: 28px;
}

.brand-visual-copy p:last-child {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.channel-strip {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.channel-strip > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.channel-chip,
.tag,
.status-chip,
.topic-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.channel-chip {
  gap: 6px;
  color: var(--charcoal);
  background: var(--soft);
  border: 1px solid var(--line);
}

.channel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--kfc-red);
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.kpi-card {
  min-height: 112px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.kpi-card strong {
  display: block;
  margin: 10px 0 4px;
  font-size: 28px;
  line-height: 1;
}

.kpi-card span {
  color: var(--muted);
  font-size: 13px;
}

.kpi-card.good {
  border-top: 4px solid var(--green);
}

.kpi-card.warn {
  border-top: 4px solid var(--gold);
}

.kpi-card.bad {
  border-top: 4px solid var(--kfc-red);
}

.kpi-card.info {
  border-top: 4px solid var(--blue);
}

.filter-bar {
  display: grid;
  grid-template-columns: auto repeat(5, minmax(120px, 1fr)) auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 16px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.filter-title {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  color: var(--kfc-red);
  font-weight: 800;
}

.filter-bar label {
  display: grid;
  gap: 5px;
  min-height: 54px;
}

.filter-bar select {
  height: 34px;
  padding: 0 8px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(380px, 1.14fr);
  gap: 16px;
  align-items: start;
}

.message-list-panel,
.detail-panel,
.data-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.message-list-panel {
  overflow: hidden;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-heading.compact {
  margin-bottom: 0;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.period-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  color: var(--charcoal);
  background: var(--warning-bg);
  border: 1px solid #f1daa0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.queue-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.queue-tab {
  min-height: 30px;
  padding: 0 9px;
  color: var(--muted);
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 800;
}

.queue-tab.is-active {
  color: #fff;
  background: var(--charcoal);
}

.message-list {
  max-height: 760px;
  overflow: auto;
}

.message-item {
  display: grid;
  gap: 9px;
  width: 100%;
  padding: 14px;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.message-item:hover,
.message-item.is-selected {
  background: #fff8f8;
}

.message-item.is-selected {
  box-shadow: inset 4px 0 0 var(--kfc-red);
}

.message-item-head,
.message-meta,
.message-tags,
.detail-meta,
.detail-actions,
.composer-actions,
.mini-grid,
.status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.message-item-head {
  justify-content: space-between;
}

.message-item strong {
  min-width: 0;
  font-size: 15px;
}

.message-item p {
  display: -webkit-box;
  overflow: hidden;
  color: #3b3836;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.message-meta {
  color: var(--muted);
  font-size: 12px;
}

.tag {
  color: #5b352c;
  background: #fff2de;
}

.topic-chip {
  color: #183f7d;
  background: var(--blue-bg);
}

.status-chip {
  color: var(--charcoal);
  background: var(--soft);
  border: 1px solid var(--line);
}

.status-chip.status-new {
  color: #7c1116;
  background: var(--danger-bg);
  border-color: #fac4c7;
}

.status-chip.status-work {
  color: #784700;
  background: var(--warning-bg);
  border-color: #eed28a;
}

.status-chip.status-wait {
  color: #173b78;
  background: var(--blue-bg);
  border-color: #bdd1f7;
}

.status-chip.status-closed {
  color: #1c6c48;
  background: var(--success-bg);
  border-color: #bce4d0;
}

.sentiment {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 800;
}

.sentiment::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--muted);
}

.sentiment.negative::before {
  background: var(--kfc-red);
}

.sentiment.neutral::before {
  background: var(--blue);
}

.sentiment.positive::before {
  background: var(--green);
}

.detail-panel {
  position: sticky;
  top: 104px;
  min-height: 680px;
  padding: 18px;
}

.detail-empty {
  display: grid;
  place-items: center;
  min-height: 560px;
  color: var(--muted);
  text-align: center;
}

.detail-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.detail-title h2 {
  margin: 6px 0 8px;
}

.priority-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: #fff;
  background: var(--charcoal);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.priority-badge.high {
  background: var(--kfc-red);
}

.priority-badge.medium {
  color: var(--ink);
  background: var(--gold);
}

.priority-badge.low {
  background: var(--green);
}

.detail-section {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.detail-section:last-child {
  border-bottom: 0;
}

.customer-card,
.ai-card,
.reply-card {
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.customer-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--kfc-red);
  border-radius: 50%;
  font-weight: 900;
}

.customer-card span,
.ai-card span,
.timeline span,
.reply-card span,
.restaurant-table span,
.access-table span {
  color: var(--muted);
  font-size: 13px;
}

.original-text {
  margin-top: 10px;
  padding: 14px;
  color: #332f2d;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  line-height: 1.5;
}

.mini-grid {
  align-items: stretch;
}

.mini-stat {
  flex: 1 1 140px;
  min-height: 70px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mini-stat strong {
  display: block;
  margin-top: 5px;
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline div,
.audit-item,
.storage-list div,
.rule-item,
.priority-item,
.auto-card,
.role-card {
  padding: 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline div {
  display: grid;
  gap: 4px;
}

.reply-card {
  display: grid;
  gap: 12px;
}

.reply-card textarea {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  line-height: 1.45;
}

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

.reply-mode label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.composer-actions {
  justify-content: space-between;
}

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

.data-panel {
  padding: 16px;
}

.data-panel.wide {
  grid-column: 1 / -1;
}

.bar-list,
.restaurant-table,
.channel-metrics,
.rule-list,
.priority-stack,
.auto-grid,
.role-cards,
.access-table,
.audit-list,
.storage-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.65fr) minmax(160px, 1fr) 42px;
  gap: 10px;
  align-items: center;
}

.bar-track {
  height: 12px;
  overflow: hidden;
  background: var(--soft);
  border-radius: 999px;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--kfc-red), var(--orange));
  border-radius: inherit;
}

.restaurant-row,
.channel-row,
.access-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) repeat(4, minmax(70px, auto));
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.restaurant-row:last-child,
.channel-row:last-child,
.access-row:last-child {
  border-bottom: 0;
}

.rating {
  font-weight: 900;
}

.rating.good {
  color: var(--green);
}

.rating.warn {
  color: var(--orange);
}

.rating.bad {
  color: var(--kfc-red);
}

.routing-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.rule-item,
.priority-item,
.auto-card,
.role-card {
  display: grid;
  gap: 8px;
}

.rule-item {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.priority-item {
  border-left: 4px solid var(--kfc-red);
}

.decision-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.decision-flow div {
  display: grid;
  gap: 10px;
  min-height: 118px;
  padding: 14px;
  color: #fff;
  background: var(--charcoal);
  border-radius: var(--radius);
}

.decision-flow strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--charcoal);
  background: #fff;
  border-radius: 50%;
}

.auto-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.auto-card {
  background: var(--paper);
}

.auto-card .status-row {
  justify-content: space-between;
}

.switch {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  inset: 0;
  background: #c8c0b8;
  border-radius: 999px;
}

.slider::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s ease;
}

.switch input:checked + .slider {
  background: var(--green);
}

.switch input:checked + .slider::before {
  transform: translateX(20px);
}

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

.role-card.is-current {
  border-color: var(--kfc-red);
  box-shadow: inset 4px 0 0 var(--kfc-red);
}

.role-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

.access-row {
  grid-template-columns: minmax(170px, 1fr) repeat(5, minmax(80px, auto));
}

.access-check {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
}

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

.audit-item {
  display: grid;
  grid-template-columns: minmax(120px, auto) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.audit-item strong {
  color: var(--kfc-red);
}

.storage-list div {
  display: grid;
  gap: 4px;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 22px;
  color: var(--muted);
  text-align: center;
}

:focus-visible {
  outline: 3px solid rgba(215, 25, 32, 0.25);
  outline-offset: 2px;
}

@media (max-width: 1260px) {
  .topbar,
  .workspace-grid,
  .intake-grid {
    grid-template-columns: 1fr;
  }

  .topbar-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .detail-panel {
    position: static;
  }

  .filter-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .filter-title {
    grid-column: 1 / -1;
  }
}

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

  .sidebar {
    position: static;
    height: auto;
    padding: 14px;
  }

  .nav-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .scope-panel {
    margin-top: 0;
  }

  .kpi-row,
  .notification-list,
  .dashboard-grid,
  .routing-grid,
  .access-grid,
  .audit-grid,
  .auto-grid,
  .role-cards,
  .decision-flow {
    grid-template-columns: 1fr 1fr;
  }

  .data-panel.wide {
    grid-column: auto;
  }

  .brand-visual-copy h2 {
    font-size: 24px;
  }
}

@media (max-width: 720px) {
  .main {
    padding: 14px;
  }

  .topbar {
    margin: -14px -14px 14px;
    padding: 14px;
  }

  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 19px;
  }

  .nav-list,
  .kpi-row,
  .notification-list,
  .filter-bar,
  .dashboard-grid,
  .routing-grid,
  .access-grid,
  .audit-grid,
  .auto-grid,
  .role-cards,
  .decision-flow {
    grid-template-columns: 1fr;
  }

  .topbar-actions,
  .section-heading,
  .detail-title {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box,
  .select-control {
    grid-template-columns: 18px minmax(0, 1fr);
    width: 100%;
  }

  .select-control span {
    display: none;
  }

  .brand-visual-copy {
    top: 18px;
    left: 18px;
    width: calc(100% - 36px);
  }

  .brand-visual-copy p:last-child {
    font-size: 14px;
  }

  .restaurant-row,
  .channel-row,
  .access-row,
  .audit-item,
  .bar-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .composer-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .text-button {
    width: 100%;
  }
}
