/* ── Bet Input Row ───────────────────────────────────────── */
#bet-input-row {
  display: flex;
  align-items: center;
  background: #0d1820;
  border: 1px solid #1c2e40;
  border-radius: 7px;
  padding: 8px 10px;
  gap: 5px;
  transition: border-color 0.15s;
}

#bet-input-row:focus-within { border-color: #2563eb; }

.currency-sign {
  color: #4a6275;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

#bet-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  min-width: 0;
}

#bet-input::placeholder { color: #3a5568; }

#bet-input::-webkit-inner-spin-button,
#bet-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.bet-flag {
  font-size: 14px;
  flex-shrink: 0;
  line-height: 1;
}

/* ── Bet Modifiers (½ · 2×) ─────────────────────────────── */
.bet-modifier {
  background: #1c2e40;
  border: none;
  border-radius: 4px;
  color: #5a7a90;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}

.bet-modifier:hover { background: #243d52; color: #c2cfe0; }
.bet-modifier:disabled { opacity: 0.3; cursor: not-allowed; }
