/* ── Action Buttons (Hit / Stand / Double / Split) ───────── */
#action-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.action-btn {
  background: #1c2e40;
  border: 1px solid #243d52;
  border-radius: 7px;
  color: #c2cfe0;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  padding: 10px 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.action-btn:hover {
  background: #243d52;
  border-color: #2e5068;
  color: #fff;
}

.action-btn:active { filter: brightness(0.88); }

.action-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.btn-icon { font-size: 13px; }

/* ── Bet / Deal Button ───────────────────────────────────── */
.bet-btn {
  width: 100%;
  background: #2563eb;
  border: none;
  border-radius: 7px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding: 13px;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
  letter-spacing: 0.3px;
}

.bet-btn:hover:not(:disabled) { background: #1d4ed8; }

.bet-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ── Play Again Button ───────────────────────────────────── */
#btn-new-round {
  background: #2563eb;
  border: none;
  border-radius: 7px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding: 12px 40px;
  cursor: pointer;
  transition: background 0.15s;
}

#btn-new-round:hover { background: #1d4ed8; }
