body {
    font-family: sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    margin-bottom: 1.5rem;
    color: #333;
}

#generate-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#generate-btn:hover {
    background-color: #45a049;
}

#numbers-display {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.number-ball {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f44336;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
