:root {
  --ink: #15171c;
  --muted: #666b74;
  --paper: #f4f0dc;
  --page: #fffaf0;
  --line: #d7c996;
  --red: #e40000;
  --green: #00c957;
  --blue: #5d00ff;
  --lime: #a7f000;
  --burgundy: #861313;
  --gold: #d9aa36;
  --silver: #dfe3e7;
  --shadow: 0 18px 45px rgba(22, 22, 22, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0 0, rgba(93, 0, 255, 0.16), transparent 28%),
    radial-gradient(circle at 100% 16%, rgba(167, 240, 0, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(228, 0, 0, 0.08), transparent 28%, rgba(0, 201, 87, 0.08) 72%, transparent),
    repeating-linear-gradient(0deg, #ece4ca 0 1px, #f6efd9 1px 8px);
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 14px;
}

.album-cover {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 4px solid #111;
  border-radius: 6px;
  color: white;
  background: #111;
  box-shadow: var(--shadow);
}

.album-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 36%, rgba(255,255,255,0.16) 36% 43%, transparent 43%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.13) 0 2px, transparent 2px 42px);
  mix-blend-mode: screen;
}

.cover-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.54), rgba(0,0,0,0.12) 56%, rgba(0,0,0,0.25));
}

.cover-top,
.cover-copy {
  position: relative;
  z-index: 2;
}

.cover-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  align-items: flex-start;
}

.brand-tab {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 11px;
  border: 2px solid #101010;
  color: #101010;
  background: #f5cf3a;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.25);
}

.host-strip {
  max-width: 180px;
  padding-top: 4px;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.cover-copy {
  width: min(100%, 680px);
  padding: 18px;
}

.eyebrow,
.section-title p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.album-cover .eyebrow {
  color: #ffe58a;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(38px, 8vw, 84px);
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 4px 0 rgba(0,0,0,0.22);
}

.cover-copy p:last-child {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(255,255,255,0.92);
  font-weight: 650;
}

.dashboard-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
}

.dashboard-band article,
.progress-card,
.album-page,
.sticker-row {
  border: 1px solid var(--line);
  background: rgba(255,250,240,0.94);
  box-shadow: 0 8px 20px rgba(35, 31, 24, 0.08);
}

.dashboard-band article {
  min-height: 72px;
  padding: 10px;
  border-radius: 6px;
}

.dashboard-band span,
.progress-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.dashboard-band strong {
  display: block;
  margin-top: 4px;
  font-size: 28px;
}

.tabbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  padding: 8px 0;
  background: rgba(246,239,217,0.94);
  backdrop-filter: blur(12px);
}

.tab {
  min-height: 42px;
  border: 1px solid #b5aa88;
  border-radius: 4px;
  color: var(--ink);
  background: #fff8df;
  font-size: 13px;
  font-weight: 900;
}

.tab.active,
.primary-action {
  border-color: #111;
  color: white;
  background: var(--blue);
}

.progress-card {
  margin: 4px 0 14px;
  padding: 12px;
  border-radius: 6px;
}

.progress-card > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.progress-track {
  height: 16px;
  overflow: hidden;
  border: 2px solid #111;
  background: repeating-linear-gradient(90deg, #fff 0 12px, #eee 12px 24px);
}

#progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--blue), var(--lime), var(--green));
  transition: width 180ms ease;
}

.view {
  display: none;
}

.view.active {
  display: block;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 10px;
}

.dashboard-emblem {
  width: 54px;
  max-height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.18));
}

h2 {
  font-size: 28px;
}

.small-action,
.secondary-action,
.primary-action {
  min-height: 40px;
  border-radius: 4px;
  padding: 9px 12px;
  border: 1px solid #111;
  font-weight: 900;
}

.small-action {
  background: #fff8df;
}

.small-action.active,
.secondary-action {
  background: #f5cf3a;
}

.danger-action {
  border-color: #8c0000;
  color: #8c0000;
  background: #fff8df;
}

.country-pages {
  display: block;
}

.album-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 8px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255,250,240,0.92);
}

.tool-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.tool-group > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.album-tools .small-action {
  min-height: 28px;
  padding: 4px 8px;
  font-size: 11px;
}

.album-page {
  border-radius: 6px;
  padding: 12px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.06), transparent 18px),
    repeating-linear-gradient(0deg, rgba(216,205,168,0.32) 0 1px, transparent 1px 38px),
    var(--page);
}

.focused-page {
  width: 100%;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-bottom: 9px;
  border-bottom: 3px double #111;
}

.country-name {
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.flag {
  display: grid;
  place-items: center;
  width: 38px;
  height: 28px;
  border: 1px solid #111;
  background: #fff;
  overflow: hidden;
  font-size: 25px;
  line-height: 1;
}

.page-header h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 18px;
  text-transform: uppercase;
}

.page-header small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.page-meter {
  min-width: 52px;
  text-align: right;
  font-weight: 950;
}

.sticker-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.sticker-grid.album-size-large {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.sticker-grid.album-size-mini {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 6px;
}

.sticker-slot {
  min-height: 238px;
  border: 2px dashed #b9b09a;
  border-radius: 4px;
  padding: 6px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.8), rgba(218,222,226,0.5)),
    var(--silver);
}

.album-size-large .sticker-slot {
  min-height: 304px;
  padding: 8px;
}

.album-size-mini .sticker-slot {
  min-height: 154px;
  padding: 5px;
}

.foil-slot {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(217,170,54,0.32), rgba(223,227,231,0.88)),
    var(--silver);
}

.sticker-slot.owned {
  border-style: solid;
  border-color: var(--green);
  background: #fdfdfd;
  box-shadow: inset 0 0 0 5px rgba(0, 201, 87, 0.16), 0 5px 10px rgba(0,0,0,0.1);
}

.sticker-slot.duplicate {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 5px #fff0a8, 0 5px 10px rgba(0,0,0,0.1);
}

.sticker-code {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  font-weight: 950;
  font-size: 11px;
}

.total-badge {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 20px;
  padding: 0 5px;
  border: 1px solid #111;
  border-radius: 3px;
  background: #fff;
  font-size: 11px;
  font-weight: 950;
}

.variant-pill {
  padding: 1px 5px;
  border-radius: 999px;
  background: #111;
  color: white;
  font-size: 9px;
}

.player-frame {
  display: grid;
  place-items: center;
  height: 112px;
  margin: 6px 0;
  border: 1px solid #c7ccd2;
  background:
    linear-gradient(150deg, rgba(215,31,60,0.14), transparent 35%),
    linear-gradient(30deg, rgba(25,87,184,0.14), transparent 45%),
    #f4f6f7;
  color: #858b92;
  font-weight: 950;
}

.player-frame.has-photo {
  aspect-ratio: 5 / 7;
  height: auto;
  overflow: hidden;
  padding: 0;
  border: 1px solid #111;
  background: #111;
}

.player-frame.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.album-size-large .player-frame {
  height: 144px;
}

.album-size-large .player-frame.has-photo {
  height: auto;
}

.album-size-mini .player-frame {
  height: 68px;
  margin: 4px 0;
}

.album-size-mini .player-frame.has-photo {
  height: auto;
}

.owned .player-frame {
  color: #111;
}

.sticker-name {
  min-height: 28px;
  font-size: 11px;
  line-height: 1.12;
  font-weight: 850;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sticker-slot > small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  line-height: 1.15;
}

.slot-meta {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  align-items: center;
  min-height: 18px;
  margin-top: 3px;
  font-size: 9px;
  color: var(--muted);
  font-weight: 850;
}

.variant-control {
  display: grid;
  gap: 3px;
  margin-top: 5px;
}

.variant-control span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.variant-select {
  width: 100%;
  min-height: 26px;
  border: 1px solid #111;
  border-radius: 3px;
  background: #fff8df;
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
}

.sticker-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin-top: 6px;
}

.sticker-actions button {
  min-height: 27px;
  border: 1px solid #111;
  border-radius: 3px;
  background: white;
  font-size: 10px;
  font-weight: 900;
}

.sticker-actions button.trade-on {
  background: #f5cf3a;
}

.album-size-mini .variant-control,
.album-size-mini .slot-meta,
.album-size-mini .variant-strip,
.album-size-mini .sticker-actions,
.album-size-mini .sticker-slot > small {
  display: none;
}

.album-size-mini .sticker-name {
  min-height: 24px;
  font-size: 10px;
}

.album-size-mini .sticker-code {
  font-size: 10px;
}

.empty-filter-state {
  grid-column: 1 / -1;
  min-height: 110px;
  display: grid;
  place-items: center;
  gap: 4px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,0.68);
  text-align: center;
}

.empty-filter-state span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.text-field,
.quick-box,
.share-output {
  width: 100%;
  border: 2px solid #111;
  border-radius: 5px;
  background: #fffaf0;
  color: var(--ink);
  outline: none;
}

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

.text-field {
  min-height: 48px;
  padding: 0 12px;
}

.quick-box,
.share-output {
  min-height: 160px;
  padding: 12px;
  resize: vertical;
}

.quick-actions,
.list-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.sticker-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.sticker-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 6px;
}

.sticker-row strong {
  display: block;
}

.sticker-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.row-actions {
  display: flex;
  gap: 5px;
}

.row-actions button {
  min-width: 36px;
  min-height: 34px;
  border: 1px solid #111;
  border-radius: 3px;
  background: white;
  font-weight: 950;
}

.share-output {
  min-height: 260px;
  margin-bottom: 10px;
}

.collection-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.collection-status {
  min-height: 20px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.server-tools {
  display: block;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.8);
}

.server-tools.online-unavailable {
  opacity: 0.82;
}

.server-tools.online-ready {
  border-color: var(--green);
  background: rgba(231, 255, 240, 0.86);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.6fr);
  gap: 8px;
}

.profile-list-label {
  margin-top: 10px;
}

.online-note {
  margin: -2px 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.panel-note {
  margin: -4px 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

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

.insight-panel {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  background: rgba(255,250,240,0.94);
  box-shadow: 0 8px 20px rgba(35, 31, 24, 0.08);
}

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

.insight-panel h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.country-ranking,
.section-progress-list,
.odds-grid {
  display: grid;
  gap: 8px;
}

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

.ranking-row,
.section-progress-row,
.country-chip {
  border: 1px solid #b5aa88;
  border-radius: 5px;
  background: #fff8df;
  color: var(--ink);
}

.ranking-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  width: 100%;
  min-height: 54px;
  padding: 7px;
  text-align: left;
}

.ranking-row small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.section-progress-row {
  display: grid;
  grid-template-columns: 32px minmax(98px, 1fr) minmax(90px, 2fr) 46px;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 6px 8px;
  text-align: left;
}

.ranking-row .flag,
.section-progress-row > span:first-child,
.control-heading > span:first-child,
.country-name .flag {
  font-size: 25px;
  line-height: 1;
}

.section-progress-row > span:first-child,
.control-heading > span:first-child {
  display: grid;
  place-items: center;
  width: 32px;
  height: 26px;
  overflow: hidden;
}

.mini-track {
  height: 10px;
  overflow: hidden;
  border: 1px solid #111;
  background: #efe8d1;
}

.mini-track i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--blue), var(--lime), var(--green));
}

.odds-card {
  display: grid;
  gap: 7px;
  min-height: 96px;
  border: 1px solid #c7b98f;
  border-radius: 5px;
  padding: 10px;
  background: white;
}

.odds-card div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.odds-card span,
.odds-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.difficulty-dots {
  display: flex;
  gap: 3px;
}

.difficulty-dots i {
  width: 12px;
  height: 12px;
  border: 1px solid #777;
  border-radius: 999px;
  background: #ececec;
}

.difficulty-dots i.on {
  border-color: #111;
  background: var(--gold);
}

.difficulty-dots.compact i {
  width: 7px;
  height: 7px;
}

.country-picker {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 12px;
  scrollbar-width: thin;
}

.flag-jump {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 28px);
  grid-auto-columns: 34px;
  gap: 4px;
  max-height: 60px;
  margin: -2px 0 8px;
  padding: 4px 2px 6px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}

.flag-jump-button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 28px;
  border: 1px solid #c1b68e;
  border-radius: 4px;
  background: #fff8df;
  font-size: 21px;
  line-height: 1;
}

.flag-jump-button.active {
  border-color: #111;
  background: var(--lime);
}

.country-chip {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 7px;
  align-items: center;
  flex: 0 0 auto;
  min-width: 132px;
  min-height: 54px;
  padding: 7px 9px;
  text-align: left;
}

.country-chip span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 30px;
  height: 28px;
  overflow: hidden;
  font-size: 27px;
  line-height: 1;
}

.country-chip b {
  max-width: 96px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-chip small {
  color: var(--muted);
  font-weight: 900;
}

.country-chip.active {
  border-color: #111;
  background: var(--lime);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.5);
}

.legend-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.legend-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff8df;
  font-size: 13px;
  font-weight: 850;
}

.legend {
  width: 15px;
  height: 15px;
  border: 1px solid #111;
  border-radius: 3px;
  background: #ececec;
}

.legend.owned {
  background: var(--green);
}

.legend.duplicate {
  background: var(--gold);
}

.legend.foil {
  background: linear-gradient(135deg, #fff, var(--gold));
}

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

.control-section {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px;
  background: rgba(255,250,240,0.96);
}

.control-heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  width: 100%;
  min-height: 34px;
  margin-bottom: 7px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 950;
}

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

.control-cell {
  min-height: 28px;
  border: 1px dashed #aaa;
  border-radius: 3px;
  background: #ececec;
  color: #555;
  font-size: 11px;
  font-weight: 900;
}

.control-cell.owned {
  border-style: solid;
  border-color: #087a3a;
  background: var(--green);
  color: #06180e;
}

.control-cell.duplicate {
  border-color: #8e6a00;
  background: var(--gold);
}

.control-cell.foil {
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.64);
}

.variant-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  min-height: 18px;
  margin-top: 4px;
}

.owned-variant,
.empty-variant {
  display: inline-flex;
  align-items: center;
  min-height: 16px;
  padding: 1px 4px;
  border: 1px solid #999;
  border-radius: 999px;
  background: #f2f2f2;
  color: #222;
  font-size: 8px;
  font-weight: 900;
}

.empty-variant {
  color: var(--muted);
  font-weight: 750;
}

.variant-blue,
.variant-blue-crumple {
  border-color: #0a4fb8;
  background: #1e73e8;
  color: white;
}

.variant-red,
.variant-red-crumple {
  border-color: #9f0000;
  background: var(--red);
  color: white;
}

.variant-purple,
.variant-purple-crumple {
  border-color: #4b0096;
  background: var(--blue);
  color: white;
}

.variant-green,
.variant-green-crumple {
  border-color: #07823b;
  background: var(--green);
}

.variant-orange {
  background: #ff8a00;
}

.variant-gold,
.variant-gold-flood-crumple,
.variant-foil {
  background: var(--gold);
}

.variant-black,
.variant-black-crumple {
  background: #111;
  color: white;
}

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

  .album-cover {
    min-height: 340px;
  }

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

  .country-pages {
    display: block;
  }

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

  .sticker-grid.album-size-large {
    grid-template-columns: 1fr;
  }

  .sticker-grid.album-size-mini {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tab {
    font-size: 11px;
  }

  .dashboard-grid,
  .odds-grid,
  .control-sheet {
    grid-template-columns: 1fr;
  }

  .section-progress-row {
    grid-template-columns: 28px minmax(84px, 1fr) minmax(70px, 1fr) 40px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .sticker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .sticker-slot {
    min-height: 238px;
    padding: 6px;
  }

  .sticker-row {
    grid-template-columns: 1fr;
  }

  .row-actions {
    justify-content: stretch;
  }

  .row-actions button {
    flex: 1;
  }
}
