/* 全体のレイアウト */
#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    margin: 0;
}

/* Canvasのスタイル */
#diceCanvas {
    display: block;
    width: 80%; /* 必要に応じて調整 */
    height: auto;
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    margin-bottom: 10px; /* 真下に余白 */
}

/* コントローラーのスタイル */
.controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.controls button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.controls button:hover {
    background-color: #0056b3;
}

.controls button:active {
    background-color: #003f7f;
}