#rollContainer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    font-size: 80px;
    height: 100px;
    /* 높이 고정 */
    align-items: center;
    /* 수직 중앙 정렬 */
}

#result {
    font-weight: bold;
    font-size: 18px;
    margin-top: 10px;
    height: 24px;
    /* 결과 영역 높이 고정 */
    display: flex;
    align-items: center;
    /* 텍스트 수직 중앙 정렬 */
    justify-content: center;
    /* 텍스트 가로 중앙 정렬 */
    text-align: center;
}

/* Game Container Styling (similar to gameCard.css) */
.game-container {
  background: none;
  padding: 0px;
  border-radius: 12px;
  box-shadow: none;
  width: 600px; /* Set to 600px as requested */
  margin: 0 auto; /* Center horizontally with 0 top margin */
}

/* Settings Styling (similar to gameCard.css) */
.settings {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* Game Actions Styling (similar to gameCard.css) */
.game-actions {
    width: 100%;
    text-align: center;
    margin-top: 0px;
}

/* Button Styling (similar to gameCard.css) */
.settings button {
    margin: 5px;
    padding: 0px 20px;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f0f0f0;
    line-height: 1.2;
    height: 42px; /* Consistent height */
    box-sizing: border-box;
    min-width: 100px; /* Consistent width */
    text-align: center;
}

.settings button:hover {
    background-color: #e0e0e0;
}