:root {
  --green-dark: #1a5c2a;
  --green-mid: #2d7d3e;
  --green-light: #3a8f4a;
  --green-felt: #1e6b30;
  --cream: #f5f0e8;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-secondary: #5a5a7a;
  --accent: #c9a84c;
  --danger: #c0392b;
  --border: #e0dcd0;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  --radius: 12px;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 15px;
  color: var(--text);
  background: #eef1f0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
}

/* ---- Layout ---- */
.app-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px 40px;
}

/* ---- Header ---- */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.header-left {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.header-left h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

.header-badge {
  font-size: 0.75rem;
  color: var(--text-secondary);
  background: var(--cream);
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.blinds-display {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.blind-input {
  width: 55px;
  padding: 4px 6px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

.blinds-display .label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* ---- Table Section ---- */
.table-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.table-controls-top {
  text-align: right;
  margin-bottom: 8px;
}

.table-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* ---- Poker Table (Green Oval) ---- */
.poker-table {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 1.6 / 1;
  min-height: 480px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
      #3a8f4a 0%,
      #2d7d3e 30%,
      #1e6b30 60%,
      #165a24 85%,
      #0f4518 100%);
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.06),
    inset 0 2px 20px rgba(0, 0, 0, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.18),
    0 0 0 16px #3a2a1a,
    0 0 0 20px #1a1008;
  overflow: hidden;
}

/* ---- Community Cards ---- */
.community-cards {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  display: flex;
  gap: 8px;
  z-index: 5;
}


/* ---- Table Info ---- */
.table-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 30px);
  z-index: 5;
}

.stage-label {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 2px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.pot-display {
  background: rgba(0, 0, 0, 0.45);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ---- Seat ---- */
.seat {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 3;
}

.seat.highlight .seat-info {
  background: #fff3cd;
  box-shadow: 0 0 0 3px var(--accent), 0 4px 16px rgba(201, 168, 76, 0.35);
}

.seat.folded .seat-info,
.seat.folded .seat-cards {
  opacity: 0.4;
}

/* Seat info box */
.seat-info {
  background: rgba(255, 255, 255, 0.93);
  padding: 4px 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  white-space: nowrap;
  transition: box-shadow 0.3s, background 0.2s;
  min-width: 50px;
}

.seat-name {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.2;
}

.seat-chips {
  font-size: 0.7rem;
  color: var(--text-secondary);
  line-height: 1.2;
}

/* Blind & Action badges */
.seat .blind-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a2e;
  color: #fff;
  padding: 1px 7px;
  border-radius: 7px;
  font-size: 0.65rem;
  font-weight: 700;
  white-space: nowrap;
  z-index: 4;
}

.seat .action-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 5px;
  white-space: nowrap;
  color: #fff;
  z-index: 4;
}

.action-badge.fold {
  background: var(--danger);
}

.action-badge.call,
.action-badge.check {
  background: #2980b9;
}

.action-badge.raise,
.action-badge.bet {
  background: #c9a84c;
  color: #1a1a2e;
}

/* Bet chip on table */
.seat .bet-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #f5d742, #e6b800);
  color: #1a1a2e;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
  z-index: 4;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  border: 1px solid #c9a000;
}

/* ---- Seat Cards ---- */
.seat-cards {
  display: flex;
  gap: 3px;
}

.poker-card {
  width: 38px;
  height: 54px;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.13);
  transition: transform 0.15s, box-shadow 0.15s;
}
.poker-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Card face-down back pattern */
.poker-card.face-down {
  background: #c0392b;
  border: 2px solid #8b1a1a;
}

/* Card corner (rank + suit) */
.card-corner {
  position: absolute;
  font-weight: 700;
  font-size: 0.6rem;
  line-height: 1.1;
  text-align: center;
}
.card-corner.top-left   { top: 3px; left: 4px; }
.card-corner.bottom-right { bottom: 3px; right: 4px; transform: rotate(180deg); }
.card-corner.red   { color: #c0392b; }
.card-corner.black { color: #1a1a2e; }

/* Card center (large suit) */
.card-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.1rem;
  line-height: 1;
}
.card-center-sm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.85rem;
  line-height: 1;
}
.card-center.red, .card-center-sm.red     { color: #c0392b; }
.card-center.black, .card-center-sm.black { color: #1a1a2e; }

/* ---- Community Cards ---- */
.community-card {
  width: 44px;
  height: 62px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  position: relative;
}
.community-card.empty {
  background: rgba(255,255,255,0.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
}

/* Community card reveal animation */
.community-card:not(.empty) {
  animation: cardReveal 0.25s ease-out;
}

@keyframes cardReveal {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Input Section ---- */
.input-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.input-section h2 {
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.action-form {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.form-group select,
.form-group input {
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  background: var(--white);
  min-width: 90px;
}

.amount-group input {
  width: 80px;
}

/* ---- Buttons ---- */
.btn-primary {
  padding: 9px 20px;
  border: none;
  border-radius: 8px;
  background: var(--green-mid);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #236b32;
}

.btn-secondary {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: #f0f0f0;
}

.btn-danger {
  padding: 2px 8px;
  border: none;
  border-radius: 4px;
  background: var(--danger);
  color: #fff;
  font-size: 0.7rem;
  cursor: pointer;
}

.btn-danger:hover {
  background: #a93226;
}

/* ---- Action List ---- */
.action-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 400px;
  overflow-y: auto;
}

.action-list-empty {
  text-align: center;
  color: #aaa;
  padding: 20px;
  font-size: 0.9rem;
}

.hand-complete-msg {
  text-align: center;
  color: #27ae60;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  background: #eafaf1;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid #a9dfbf;
}

/* ---- Column Header ---- */
.action-column-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 12px;
  background: #2c3e50;
  border-radius: 6px 6px 0 0;
  font-size: 0.65rem;
  font-weight: 700;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.col-num    { min-width: 24px; flex-shrink: 0; }
.col-cards  { min-width: 46px; flex-shrink: 0; }
.col-player { min-width: 48px; flex-shrink: 0; }
.col-action { min-width: 70px; flex-shrink: 0; }
.col-amount { min-width: 36px; flex-shrink: 0; text-align: right; }
.col-stack  { min-width: 80px; flex-shrink: 0; text-align: center; }
.col-pot    { min-width: 65px; flex-shrink: 0; text-align: right; }
.col-del    { margin-left: auto; flex-shrink: 0; width: 30px; }

/* Stage group container */
.action-stage-group {
  margin-bottom: 0;
}

/* Stage header — colored bar, clickable */
.action-stage-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  cursor: pointer;
  user-select: none;
  border-radius: 0;
}

.action-stage-header.preflop { background: #3a7bd5; }
.action-stage-header.flop    { background: #27ae60; }
.action-stage-header.turn    { background: #e67e22; }
.action-stage-header.river   { background: #c0392b; }

.stage-toggle {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.8);
  width: 12px;
  flex-shrink: 0;
}

.stage-header-text {
  font-weight: 700;
  font-size: 0.7rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.stage-action-count {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.7);
  margin-left: auto;
}

/* Collapsed stage body */
.action-stage-body.collapsed {
  display: none;
}

/* Action item */
.action-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 12px;
  background: #f9faf8;
  border-bottom: 1px solid #eee;
  font-size: 0.82rem;
}

.action-item:last-child {
  border-radius: 0 0 6px 6px;
  border-bottom: none;
}

.action-item.even {
  background: #f0f2ed;
}

.action-item .step-num {
  color: var(--text-secondary);
  font-size: 0.7rem;
  min-width: 24px;
  flex-shrink: 0;
}

.action-item .step-player {
  min-width: 48px;
  flex-shrink: 0;
  font-weight: 600;
}

.action-item .step-action {
  min-width: 70px;
  flex-shrink: 0;
  font-weight: 600;
  color: #2c3e50;
}

.action-item .step-amount {
  font-weight: 600;
  min-width: 36px;
  flex-shrink: 0;
  text-align: right;
}

.action-item .step-pot {
  color: var(--text-secondary);
  font-size: 0.78rem;
  min-width: 65px;
  flex-shrink: 0;
  text-align: right;
}

.action-item .step-delete {
  margin-left: auto;
  flex-shrink: 0;
}

/* Stack info */
.step-stack {
  font-size: 0.72rem;
  color: #888;
  min-width: 80px;
  flex-shrink: 0;
  text-align: center;
}

.stack-arrow {
  margin: 0 3px;
  color: #bbb;
}

.stack-after.red {
  color: #c0392b;
  font-weight: 600;
}

/* Mini cards in action list */
.step-cards {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.step-cards-hidden {
  color: #ccc;
  font-size: 0.7rem;
  min-width: 46px;
  text-align: center;
}

.mini-card {
  display: inline-block;
  width: 20px; height: 28px;
  border-radius: 3px;
  background: #fff;
  font-size: 0.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 28px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.mini-card.red { color: #c0392b; }
.mini-card.black { color: #1a1a2e; }
.mini-card.unknown { background: #e0e0e0; color: #999; font-size: 0.6rem; }

/* ---- Scrollbar ---- */
.action-list::-webkit-scrollbar {
  width: 5px;
}

.action-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

/* ---- Card Picker Overlay ---- */
.card-picker-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.card-picker {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  min-width: 220px;
  z-index: 21;
}

.card-picker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-picker-title {
  font-weight: 700;
  font-size: 0.9rem;
}

.card-picker-close {
  border: none;
  background: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 0 4px;
  line-height: 1;
}

.card-picker-close:hover {
  color: var(--danger);
}

.card-picker-body {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.picker-preview-card {
  width: 48px;
  height: 68px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: relative;
}

.picker-preview-card .card-corner {
  font-weight: 700;
  font-size: 0.65rem;
  line-height: 1.1;
  text-align: center;
}

.picker-preview-card .card-center-sm {
  font-size: 1rem;
}

.picker-preview-card .card-corner.top-left { top: 3px; left: 4px; }
.picker-preview-card .card-corner.bottom-right { bottom: 3px; right: 4px; transform: rotate(180deg); }

.picker-preview-card .card-corner.red, .picker-preview-card .card-center-sm.red { color: #c0392b; }
.picker-preview-card .card-corner.black, .picker-preview-card .card-center-sm.black { color: #1a1a2e; }

.picker-preview-card.empty {
  background: rgba(0,0,0,0.08);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12);
}

.card-picker-selects {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-picker-selects .form-group select {
  min-width: 60px;
  padding: 4px 6px;
}

.picker-chips-group {
  margin-top: 8px;
  border-top: 1px solid #e0dcd0;
  padding-top: 8px;
}

.picker-chips-group input {
  width: 80px;
  padding: 4px 6px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.85rem;
}

.card-picker-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

/* Community card clickable */
.community-card {
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.community-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px var(--accent), 0 4px 12px rgba(201, 168, 76, 0.3);
}

.community-card.empty:hover {
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .app-shell {
    padding: 8px;
  }

  /* Header stacks vertically */
  .app-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
  }

  .header-left h1 {
    font-size: 1.15rem;
  }

  .header-right {
    width: 100%;
    justify-content: space-between;
  }

  .blinds-display {
    padding: 4px 8px;
    gap: 4px;
  }

  .blind-input {
    width: 42px;
    padding: 3px 4px;
    font-size: 0.78rem;
  }

  /* Table section */
  .table-section {
    padding: 10px 8px 12px;
    margin-bottom: 12px;
  }

  .table-controls-top {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
    margin-bottom: 6px;
  }

  .table-controls-top .btn-secondary {
    font-size: 0.72rem;
    padding: 4px 8px;
  }

  .poker-table {
    min-height: 280px;
    max-width: 100%;
    border-radius: 50%;
    box-shadow:
      inset 0 0 0 2px rgba(255, 255, 255, 0.06),
      inset 0 1px 10px rgba(0, 0, 0, 0.12),
      0 4px 16px rgba(0, 0, 0, 0.15),
      0 0 0 8px #3a2a1a,
      0 0 0 10px #1a1008;
  }

  /* Smaller community cards */
  .community-cards {
    gap: 4px;
  }

  .community-card {
    width: 28px;
    height: 40px;
    border-radius: 4px;
  }

  .community-card .card-corner {
    font-size: 0.45rem;
  }

  .community-card .card-center {
    font-size: 0.75rem;
  }

  .community-card .card-center-sm {
    font-size: 0.65rem;
  }

  /* Table info */
  .stage-label {
    font-size: 0.65rem;
    padding: 1px 8px;
  }

  .pot-display {
    font-size: 0.7rem;
    padding: 2px 10px;
  }

  .table-info {
    transform: translate(-50%, 20px);
  }

  /* Seats */
  .seat-info {
    padding: 2px 6px;
    border-radius: 5px;
    min-width: 38px;
  }

  .seat-name {
    font-size: 0.6rem;
  }

  .seat-chips {
    font-size: 0.55rem;
  }

  .seat-cards {
    gap: 2px;
  }

  .poker-card {
    width: 24px;
    height: 34px;
    border-radius: 3px;
  }

  .poker-card .card-corner {
    font-size: 0.43rem;
  }
  .poker-card .card-corner.top-left { top: 1px; left: 2px; }
  .poker-card .card-corner.bottom-right { bottom: 1px; right: 2px; }

  .poker-card .card-center {
    font-size: 0.7rem;
  }
  .poker-card .card-center-sm {
    font-size: 0.6rem;
  }

  /* Badges */
  .seat .blind-badge {
    top: -14px;
    font-size: 0.5rem;
    padding: 0px 5px;
  }

  .seat .action-badge {
    bottom: -12px;
    font-size: 0.5rem;
    padding: 0px 4px;
  }

  .seat .bet-badge {
    font-size: 0.55rem;
    padding: 1px 5px;
  }

  /* Card picker overlay — remove oval clipping on mobile */
  .card-picker-overlay {
    border-radius: 0;
    overflow: visible;
  }

  .card-picker {
    max-width: 85vw;
    min-width: 160px;
    padding: 10px 12px;
  }

  .card-picker-title {
    font-size: 0.75rem;
  }

  .card-picker-body {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .picker-preview-card {
    width: 36px;
    height: 50px;
  }

  .card-picker-selects {
    gap: 4px;
  }

  .card-picker-selects .form-group select {
    min-width: 50px;
    padding: 3px 4px;
    font-size: 0.8rem;
  }

  .picker-chips-group input {
    width: 70px;
    font-size: 0.8rem;
  }

  .card-picker-actions .btn-primary,
  .card-picker-actions .btn-secondary {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  /* Input section */
  .input-section {
    padding: 12px 10px;
    border-radius: 10px;
  }

  .input-section h2 {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .action-form {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .form-group label {
    font-size: 0.68rem;
  }

  .form-group select,
  .form-group input {
    width: 100%;
    padding: 7px 8px;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  .amount-group input {
    width: 100%;
  }

  .btn-primary {
    padding: 10px;
    font-size: 0.85rem;
    width: 100%;
  }

  /* Action list */
  .action-list {
    max-height: 260px;
    margin-top: 10px;
  }

  .action-column-header {
    font-size: 0.55rem;
    padding: 2px 6px;
    gap: 4px;
  }

  .col-num    { min-width: 18px; }
  .col-cards  { min-width: 30px; }
  .col-player { min-width: 32px; }
  .col-action { min-width: 48px; }
  .col-amount { min-width: 24px; }
  .col-stack  { min-width: 60px; }
  .col-pot    { min-width: 44px; }

  .action-item {
    padding: 3px 6px;
    gap: 4px;
    font-size: 0.7rem;
  }

  .action-item .step-num { min-width: 18px; font-size: 0.6rem; }
  .action-item .step-player { min-width: 32px; }
  .action-item .step-action { min-width: 48px; }
  .action-item .step-amount { min-width: 24px; }
  .action-item .step-pot { min-width: 44px; font-size: 0.65rem; }

  .step-stack {
    min-width: 60px;
    font-size: 0.62rem;
  }

  .mini-card {
    width: 16px;
    height: 22px;
    line-height: 22px;
    font-size: 0.42rem;
  }

  /* Stage header */
  .action-stage-header {
    padding: 2px 8px;
  }

  .stage-header-text {
    font-size: 0.6rem;
  }

  .stage-action-count {
    font-size: 0.52rem;
  }

  /* Hide some column info on small screens */
  .action-column-header .col-stack,
  .action-item .step-stack {
    display: none;
  }

  /* Hand complete message */
  .hand-complete-msg {
    font-size: 0.8rem;
    padding: 10px;
  }
}
