body {
  font-family: Arial, sans-serif;
  padding: 20px;
  text-align: center;
  background: #f8f9fa;
}

h1 {
  margin-bottom: 20px;
}

.main-layout {
  display: flex;
  justify-content: center;
  gap: 30px;
  /* align-items: flex-start; */
}

/* .left-panel {
  flex: 1;
}

.right-panel {
  flex: 0 0 300px;
  text-align: left;
} */

.input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-group input,
.input-group button {
  width: 100%;
  padding: 8px;
}

button {
  cursor: pointer;
}

.controls {
  margin-top: 20px;
}

#summary {
  margin-top: 10px;
  font-weight: bold;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
  /* max-width: 700px; */
  margin: 0 auto;
}

.bet-box {
  background: white;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.bet-box button {
  margin-top: 5px;
  background: #ffdddd;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
}

.bet-box input {
  width: 50px;
  font-size: 12px;
  margin-top: 5px;
  padding: 2px;
}

.highlight {
  background-color: #ffe599 !important;
}

.over-limit {
  color: red;
  font-weight: bold;
}
.global-controls {
  margin-bottom: 20px;
}

#globalLimit {
  padding: 8px;
  width: 250px;
  margin-bottom: 10px;
}

.alert-area {
  background-color: #ffe0e0;
  color: #a30000;
  font-weight: bold;
  padding: 10px;
  border-radius: 5px;
}
.usermanual li {
  text-align: start;
  font-size: small;
  list-style: circle;
}
.bet-box {
  background-color: #f4f4f4;
  padding: 10px;
  border: 1px solid #ccc;
  text-align: center;
}

.bet-box.bet-entered {
  background-color: #d4edda; /* green background */
}

.bet-box.over-limit {
  background-color: #f8d7da; /* red background */
}


