.dice-game-container {
max-width: 600px;
margin: 20px auto;
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.dice-game-bet-area {
margin: 20px 0;
padding: 20px;
background: #f9f9f9;
border-radius: 5px;
}
.bet-type-select label {
margin-right: 20px;
font-size: 16px;
cursor: pointer;
}
.bet-amount input, .bet-multiplier input {
margin-left: 10px;
padding: 5px;
}
.bet-multiplier input[type="range"] {
width: 200px;
vertical-align: middle;
}
#multiplier-val {
font-weight: bold;
font-size: 1.2em;
color: #0073aa;
}
#dice-play-btn {
display: block;
width: 100%;
margin-top: 20px;
font-size: 18px;
padding: 10px;
}
#dice-result {
margin-top: 15px;
font-weight: bold;
text-align: center;
font-size: 1.2em;
}
.dice-history {
margin-top: 30px;
}
.dice-history table {
width: 100%;
border-collapse: collapse;
}
.dice-history th, .dice-history td {
padding: 8px;
border-bottom: 1px solid #eee;
text-align: center;
}