body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    transition: background-color 0.3s, color 0.3s;
}

body.dark-mode {
    background-color: #333;
    color: #fff;
}

.container {
    text-align: center;
}

.lotto-numbers {
    display: flex;
    margin: 20px 0;
}

.lotto-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    font-size: 20px;
    font-weight: bold;
    border: 2px solid #ccc;
    color: #333;
}

body.dark-mode .lotto-number {
    background-color: #555;
    border-color: #888;
    color: #fff;
}

#generator-btn, #theme-toggle-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}