/* Estilos gerais */
body {
    font-family: sans-serif;
    text-align: center;
    margin: 20px;
}

h1 {
    color: #333;
}

form {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="number"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 200px;
    margin-bottom: 10px;
}

button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Lista de números vendidos */
#numerosVendidos {
    list-style: none;
    padding: 0;
    display: flex; /* Use flexbox para organizar os números em linha */
    flex-wrap: wrap; /* Quebra a linha se não couber */
    justify-content: center; /* Centraliza os números */
}

#numerosVendidos li {
    background-color: #f2f2f2;
    padding: 10px;
    margin: 5px;
    border-radius: 4px;
}