/* --- General Body --- */
body {
  background: #222;
  color: white;
  font-family: Arial, sans-serif;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  margin-bottom: 20px;
}

/* --- Back Button --- */
#back-btn {
  background: #444;
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 15px;
}

#back-btn:hover {
  background: #666;
}

/* --- Container Layout --- */
.container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

#wheel-container {
  flex: 0 0 auto;
  cursor: pointer;
}

#bets-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- Number Picker & Outside Bets --- */
#number-picker, .outside-bets {
  display: grid;
  grid-template-columns: repeat(6, 60px);
  gap: 5px;
}

.number-btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.number-btn {
  padding: 5px;
  background: #555;
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  width: 50px;
}

.number-btn.selected {
  background: gold;
  color: black;
}

.bet-input {
  width: 50px;
  margin-top: 3px;
  text-align: center;
}

/* --- Scoreboard & Result Text --- */
#scoreboard {
  margin-top: 20px;
  background-color: #fff;  /* White background */
  color: #000;             /* Black text */
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  border: 1px solid #ccc;  /* Subtle border */
}

/* Keep the result text color as is */
#result-text {
  margin-top: 15px;
  font-size: 18px;
  font-weight: bold;
}

/* --- Canvas / Wheel --- */
canvas {
  border-radius: 50%;
  background: #111;
  box-shadow: 0 0 20px rgba(0,0,0,0.8);
}
