body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    margin-top: 90px;
    margin-bottom: 50px;
    background-color: #f7f9fc;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    width: 90%;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

.bilhete {
    display: grid;
    width: 100px;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    justify-items: center;
    margin-bottom: 30px;
}

.numero {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    background: #f1f1f1;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.numero:hover {
    background: #4CAF50;
    color: #fff;
    border-color: #4CAF50;
}

.numero.marcado {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.inputs-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

label {
    font-weight: bold;
    color: #555;
}

.input-group {
    display: flex;
    width: 100px;
    gap: 10px;
    justify-content: space-between;
}

input[type="number"] {
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

button {
    display: block;
    width: 300px;
    padding: 12px;
    font-size: 1.2rem;
    color: white;
    background-color: #4CAF50;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

button:hover {
    background-color: #388E3C;
}

button:disabled {
    background-color: #ddd;
    cursor: not-allowed;
}

#jogosGerados {
    margin-top: 20px;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    padding: 10px;
    text-align: left;
    width: 300px;
}

#jogosGerados p {
    margin: 5px 0;
    font-size: 1rem;
    color: #333;
}

#salvarJogos {
    background-color: #007bff;
}