:root {
  color-scheme: dark;
  --ink: #030303;
  --ink-2: #090909;
  --panel: #151515;
  --panel-2: #202020;
  --paper: #ffffff;
  --paper-2: rgba(255, 255, 255, 0.88);
  --muted: rgba(255, 255, 255, 0.72);
  --brass: #ef2323;
  --green: #ffffff;
  --red: #ffffff;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.09);
  --input-bg: #151512;
  --icon-color: #ffffff;
  --chart-text: #ffffff;
  --chart-grid: rgba(255, 255, 255, 0.16);
  --chart-grid-soft: rgba(255, 255, 255, 0.1);
  --chart-series-1: #ef2323;
  --chart-series-2: #ffffff;
  --chart-series-3: #cfcfcf;
  --shadow: 0 22px 54px rgba(0, 0, 0, 0.58);
}

html[data-theme="light"] {
  color-scheme: light;
  --ink: #f6f7f8;
  --ink-2: #ffffff;
  --panel: #ffffff;
  --panel-2: #f2f4f6;
  --paper: #171717;
  --paper-2: #313131;
  --muted: #595959;
  --brass: #c91818;
  --green: #16633c;
  --red: #c91818;
  --line: rgba(0, 0, 0, 0.16);
  --line-soft: rgba(0, 0, 0, 0.1);
  --input-bg: #ffffff;
  --icon-color: #171717;
  --chart-text: #171717;
  --chart-grid: rgba(0, 0, 0, 0.14);
  --chart-grid-soft: rgba(0, 0, 0, 0.08);
  --chart-series-1: #c91818;
  --chart-series-2: #303030;
  --chart-series-3: #747474;
  --shadow: 0 22px 54px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  background:
    radial-gradient(circle at 6% 2%, rgba(239, 35, 35, 0.14), transparent 22rem),
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.08), transparent 18rem),
    linear-gradient(135deg, #030303 0%, #0c0c0c 48%, #000 100%);
  background-size: auto;
  letter-spacing: 0;
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at 8% 2%, rgba(201, 24, 24, 0.12), transparent 22rem),
    radial-gradient(circle at 88% 10%, rgba(0, 0, 0, 0.06), transparent 18rem),
    linear-gradient(135deg, #f8f9fa 0%, #eceff3 52%, #ffffff 100%);
}

button,
input,
select {
  font: inherit;
}

button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.72rem 0.95rem;
  color: var(--paper);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  cursor: pointer;
}

button:hover:not(:disabled),
button:focus-visible {
  border-color: var(--brass);
  outline: none;
  box-shadow: 0 0 0 3px rgba(239, 35, 35, 0.18);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.primary-btn {
  color: #fff;
  font-weight: 800;
  border-color: rgba(239, 35, 35, 0.7);
  background: linear-gradient(180deg, #ef2323, #9f1111);
}

input,
select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 0.68rem 0.72rem;
  color: var(--paper);
  background: var(--input-bg);
}

input:focus,
select:focus {
  border-color: var(--brass);
  outline: none;
  box-shadow: 0 0 0 3px rgba(239, 35, 35, 0.18);
}

label {
  display: grid;
  gap: 0.42rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.app-shell {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 20px;
  width: min(1840px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px;
  transition: grid-template-columns 160ms ease;
}

.app-shell.sidebar-collapsed {
  grid-template-columns: 72px minmax(0, 1fr);
}

.app-shell.sidebar-collapsed .sidebar {
  grid-template-rows: 1fr auto auto;
  padding: 12px;
}

.app-shell.sidebar-collapsed .sidebar-brand,
.app-shell.sidebar-collapsed .sidebar-nav {
  display: none;
}

.app-shell.sidebar-collapsed .sidebar-collapse {
  align-self: end;
  justify-self: stretch;
  grid-template-columns: 1fr;
  place-items: center;
  min-height: 48px;
  padding: 0;
}

.app-shell.sidebar-collapsed .sidebar-collapse .nav-label {
  display: none;
}

.app-shell.sidebar-collapsed .sidebar-tools .nav-item {
  grid-template-columns: 1fr;
  place-items: center;
  min-height: 48px;
  padding: 0;
}

.app-shell.sidebar-collapsed .sidebar-tools .nav-label {
  display: none;
}

.app-shell.sidebar-collapsed .sidebar-collapse svg {
  transform: rotate(180deg);
}

.sidebar {
  position: sticky;
  top: 18px;
  z-index: 8;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 18px;
  height: calc(100vh - 36px);
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--shadow);
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--paper);
}

.brand-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.brand-copy span {
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.1;
}

.brand-copy small {
  color: var(--paper-2);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(239, 35, 35, 0.55);
  border-radius: 8px;
  object-fit: cover;
  background: #000;
  box-shadow: 0 0 18px rgba(239, 35, 35, 0.22);
}

.sidebar-nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.sidebar-tools {
  display: grid;
  gap: 10px;
}

.nav-item,
.sidebar-collapse {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  color: var(--paper-2);
  background: rgba(255, 255, 255, 0.055);
}

.nav-item.active {
  border-color: var(--brass);
  color: var(--paper);
  background: linear-gradient(180deg, rgba(239, 35, 35, 0.32), rgba(255, 255, 255, 0.07));
}

.nav-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--icon-color);
  font-size: 1rem;
}

.nav-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-collapse svg {
  width: 22px;
  height: 22px;
  color: var(--icon-color);
  transition: transform 160ms ease;
}

.main-stage {
  min-width: 0;
}

.view-panel {
  display: none;
  min-width: 0;
  gap: 18px;
}

.view-panel.active {
  display: grid;
}

.upload-zone,
.filters,
.export-panel,
.notice-panel,
.warning-panel,
.chart-panel,
.table-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--shadow);
}

.upload-zone {
  position: relative;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 12px;
  min-height: 132px;
  padding: 22px;
  overflow: hidden;
}

.upload-zone::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(239, 35, 35, 0.38);
  border-radius: 6px;
  pointer-events: none;
}

.upload-zone.dragging {
  border-color: var(--brass);
  background:
    linear-gradient(180deg, rgba(239, 35, 35, 0.18), rgba(255, 255, 255, 0.05)),
    var(--panel);
}

.upload-zone h1,
.filters h1,
.export-panel h1,
.chart-panel h1,
.chart-panel h2,
.table-panel h2 {
  margin: 0;
  font-size: 1.18rem;
}

.chart-panel h1,
.chart-panel h2 {
  font-size: 1.34rem;
}

.upload-zone p,
.export-panel p {
  margin: 0;
  color: var(--paper-2);
  line-height: 1.6;
}

.upload-zone .primary-btn {
  min-width: min(260px, 100%);
}

.file-meta {
  color: var(--muted) !important;
  font-size: 0.86rem;
}

.eyebrow {
  margin: 0 0 0.35rem;
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title span {
  width: 28px;
  height: 2px;
  background: var(--brass);
}

.panel-toolbar,
.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-toolbar button,
.filter-header button {
  flex: 0 0 auto;
}

.notice-panel {
  padding: 14px 16px;
  display: grid;
  gap: 0.35rem;
  color: var(--paper-2);
}

.notice-panel strong {
  color: var(--paper);
}

.notice-panel.success strong {
  color: var(--green);
}

.notice-panel.error strong {
  color: var(--red);
}

.warning-panel {
  overflow: hidden;
}

.warning-panel.hidden {
  display: none;
}

.warning-panel button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border: 0;
  border-radius: 0;
  color: var(--paper);
  background: rgba(239, 35, 35, 0.16);
}

.warning-panel ul {
  margin: 0;
  padding: 12px 18px 14px 32px;
  color: var(--paper-2);
  font-size: 0.85rem;
  line-height: 1.55;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 12px;
}

.kpi-card {
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(239, 35, 35, 0.1), rgba(255, 255, 255, 0.04)),
    var(--panel-2);
  box-shadow: var(--shadow);
}

.kpi-card span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 1rem;
}

.kpi-card strong {
  display: block;
  color: var(--paper);
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

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

.chart-panel {
  display: grid;
  gap: 12px;
  min-height: 340px;
  padding: 16px;
}

.chart-panel.wide {
  min-height: 420px;
}

.chart-panel canvas {
  width: 100% !important;
  height: 260px !important;
  min-height: 220px;
}

.clue-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.clue-row {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.clue-row-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 14px;
  color: var(--paper);
  text-align: left;
  background: transparent;
}

.clue-row-summary strong,
.clue-row-summary span {
  min-width: 0;
  overflow-wrap: anywhere;
  white-space: normal;
}

.clue-row-summary span {
  color: var(--paper-2);
  font-size: 1rem;
  line-height: 1.45;
}

.clue-row-summary strong {
  font-size: 1.12rem;
}

.clue-row-indicator {
  justify-self: end;
  color: var(--paper);
  font-weight: 800;
}

.clue-row-detail {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line-soft);
  padding: 14px;
  background: rgba(0, 0, 0, 0.14);
}

.empty-note {
  margin: 0;
  color: var(--muted);
}

.clue-buyer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.clue-buyer-card {
  display: grid;
  gap: 0.55rem;
  text-align: left;
  background: rgba(16, 16, 15, 0.42);
}

.clue-buyer-card:hover,
.clue-buyer-card:focus-visible,
.clue-row-summary:hover,
.clue-row-summary:focus-visible {
  background: rgba(239, 35, 35, 0.12);
}

.clue-buyer-card strong {
  color: var(--paper);
  font-size: 1.1rem;
  overflow-wrap: anywhere;
}

.clue-buyer-card span {
  color: var(--paper-2);
  font-size: 1rem;
  line-height: 1.62;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.filters,
.export-panel {
  display: grid;
  gap: 16px;
  width: min(1040px, 100%);
  padding: 20px;
}

.filter-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 10px;
}

.filter-summary article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(239, 35, 35, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(16, 16, 15, 0.35);
}

.filter-summary span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.filter-summary strong {
  color: var(--paper);
  font-size: 1.45rem;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

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

.filter-field {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 12px;
  background: rgba(16, 16, 15, 0.35);
}

.wide-field {
  grid-column: 1 / -1;
}

.split-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

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

.table-panel {
  min-width: 0;
  overflow: hidden;
}

.table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.table-head p {
  margin: 0;
  color: var(--muted);
}

.table-wrap {
  max-height: 680px;
  overflow: auto;
}

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

.summary-table {
  table-layout: fixed;
  min-width: 100%;
}

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

th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: var(--paper);
  background: var(--ink-2);
  font-size: 0.9rem;
  white-space: nowrap;
}

td {
  color: var(--paper-2);
  font-size: 0.94rem;
  line-height: 1.45;
}

.summary-header-cell {
  padding: 0;
  user-select: none;
}

.summary-header-cell.drag-over {
  box-shadow: inset 3px 0 0 var(--brass);
}

.column-shell {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 86px;
  padding: 10px 18px 10px 12px;
}

.column-title-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
}

.column-drag-handle {
  color: var(--icon-color);
  cursor: grab;
  font-size: 0.95rem;
  line-height: 1;
  opacity: 0.82;
}

.summary-header-cell:active .column-drag-handle {
  cursor: grabbing;
}

.column-sort {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  min-height: 28px;
  border: 0;
  border-radius: 4px;
  padding: 0;
  color: var(--paper);
  background: transparent;
  font-weight: 850;
  text-align: left;
}

.column-sort:hover,
.column-sort:focus-visible {
  border-color: transparent;
  box-shadow: none;
  color: var(--paper);
}

.column-sort span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sort-indicator {
  flex: 0 0 auto;
  width: 1rem;
  color: var(--icon-color);
  text-align: center;
}

.column-filter {
  min-height: 34px;
  border-radius: 4px;
  padding: 0.45rem 0.5rem;
  color: var(--paper);
  font-size: 0.86rem;
}

.column-filter::placeholder {
  color: var(--muted);
}

.column-resizer {
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
  cursor: col-resize;
}

.column-resizer::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 4px;
  bottom: 14px;
  width: 2px;
  border-radius: 999px;
  background: var(--line);
}

.column-resizer:hover::after,
.column-resizer:focus-visible::after {
  background: var(--icon-color);
}

body.is-resizing-column {
  cursor: col-resize;
  user-select: none;
}

.summary-row {
  cursor: pointer;
}

.summary-row:hover,
.summary-row:focus {
  background: rgba(239, 35, 35, 0.1);
  outline: none;
}

.summary-row .primary-cell {
  color: var(--paper);
  font-weight: 800;
}

.multiline {
  min-width: 180px;
  white-space: pre-line;
}

.empty-cell {
  height: 180px;
  color: var(--muted);
  text-align: center;
  vertical-align: middle;
}

.detail-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(680px, 100vw);
  height: 100vh;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(239, 35, 35, 0.045) 1px, transparent 1px),
    var(--ink-2);
  background-size: 22px 22px, auto;
  box-shadow: -26px 0 48px rgba(0, 0, 0, 0.44);
  transform: translateX(104%);
  transition: transform 180ms ease;
}

.detail-drawer.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.drawer-head h2 {
  margin: 0;
  overflow-wrap: anywhere;
}

.drawer-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.drawer-actions button {
  min-height: 40px;
  padding: 0.52rem 0.75rem;
  white-space: nowrap;
}

.drawer-actions .drawer-close {
  width: 42px;
  padding: 0;
  font-size: 1.5rem;
}

.drawer-content {
  display: grid;
  align-content: start;
  gap: 16px;
  overflow: auto;
  padding: 18px;
  font-size: 1.05rem;
}

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

.drawer-stats div,
.drawer-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.drawer-stats span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.drawer-stats strong {
  white-space: pre-line;
  overflow-wrap: anywhere;
  font-size: 1.16rem;
  line-height: 1.45;
}

.drawer-section h3 {
  margin: 0 0 0.7rem;
  color: var(--paper);
  font-size: 1.16rem;
}

.drawer-section ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--paper-2);
  font-size: 1.05rem;
  line-height: 1.68;
}

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

.mini-table-wrap table {
  min-width: 1120px;
}

.detail-drawer th,
.detail-drawer td {
  font-size: 1rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(6px);
}

.modal-backdrop[hidden] {
  display: none;
}

.privacy-modal {
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(239, 35, 35, 0.13), rgba(255, 255, 255, 0.035)),
    var(--panel);
  box-shadow: var(--shadow);
}

.privacy-modal h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.welcome-copy {
  display: grid;
  gap: 0.95rem;
  margin-bottom: 1.35rem;
}

.welcome-copy h3 {
  margin: 0.35rem 0 0;
  color: var(--paper);
  font-size: 1.08rem;
}

.welcome-copy p {
  margin: 0;
  color: var(--paper-2);
  line-height: 1.7;
}

.welcome-copy a {
  color: var(--paper);
  font-weight: 850;
}

@media (max-width: 1180px) {
  .app-shell {
    grid-template-columns: 248px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

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

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

  .app-shell.sidebar-collapsed {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .app-shell.sidebar-collapsed .sidebar {
    position: sticky;
    top: 14px;
    align-self: start;
    height: calc(100vh - 28px);
    min-height: 360px;
  }

  .sidebar {
    position: static;
    width: auto;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: auto;
  }

  .main-stage {
    min-width: 0;
  }

  .chart-grid,
  .clue-buyer-list,
  .export-actions {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 620px) {
  .app-shell {
    padding: 10px;
  }

  .sidebar {
    padding: 14px;
  }

  .sidebar-brand {
    align-items: start;
  }

  .brand-copy span {
    font-size: 1.22rem;
  }

  .clue-row-summary {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .clue-row-indicator {
    justify-self: start;
  }

  .split-fields,
  .filter-grid,
  .filter-summary,
  .kpi-grid,
  .drawer-stats {
    grid-template-columns: 1fr;
  }

  .upload-zone,
  .filters,
  .export-panel,
  .chart-panel {
    padding: 14px;
  }

  .chart-panel {
    min-height: 310px;
  }

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

  .drawer-actions {
    width: 100%;
    justify-content: stretch;
  }

  .drawer-actions button:not(.drawer-close) {
    flex: 1 1 auto;
  }
}
