.pension-lotto-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.pension-lotto-game-row {
    margin-bottom: 30px;
}

.game-number {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.selected-numbers {
    margin-bottom: 15px;
    min-height: 40px;
}

.selected-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 20px;
    background-color: #007bff;
    color: white;
    margin-right: 8px;
    font-weight: bold;
}

.number-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    margin-bottom: 15px;
}

.number-button {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background-color: white;
    cursor: pointer;
    transition: all 0.2s;
}

.number-button:hover {
    background-color: #e9ecef;
}

.number-button.selected {
    background-color: #007bff;
    color: white;
    border-color: #0056b3;
}

/* ... 나머지 스타일은 lottoCalculator.css와 유사 ... */

/* 기존 스타일에 추가 */
.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.group-select {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
    width: 100px;
}

.number-inputs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.number-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    -moz-appearance: textfield;
}

.number-input::-webkit-outer-spin-button,
.number-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.numbers-preview {
    font-size: 18px;
    color: #007bff;
    font-weight: bold;
    letter-spacing: 2px;
}

.numbers-incomplete {
    color: #dc3545;
    font-size: 14px;
}

.game-controls-row {
    display: flex;
    gap: 10px;
} 