body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

#game-container {
    margin-top: 20px;
}

#board {
    background-color: #0066cc;
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
}

.column {
    display: inline-block;
    vertical-align: top;
    padding: 5px;
}

.cell {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cell.red {
    background-color: #ff4444;
}

.cell.yellow {
    background-color: #ffeb3b;
}

.column:hover .cell:not(.red):not(.yellow) {
    background-color: #e0e0e0;
}

#status {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

#reset-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 18px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#reset-button:hover {
    background-color: #45a049;
}
