body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9fafe;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container21 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    margin-top: 100px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333333;
}

p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555555;
    line-height: 1.6;
}

.bilhete {
    width: 100px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.numero21 {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    background: #f4f4f4;
    color: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.numero21:hover {
    background: #4CAF50;
    color: #ffffff;
    border-color: #4CAF50;
}

.numero21.marcado {
    background: #4CAF50;
    color: #ffffff;
    border-color: #4CAF50;
}

.inputs-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

label {
    font-weight: bold;
    color: #444444;
}

input[type="number"] {
    width: 60px;
    height: 40px;
    text-align: center;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #fafafa;
    margin: 0 5px;
}

button {
    display: block;
    width: 80%;
    max-width: 400px;
    padding: 12px;
    font-size: 1.2rem;
    color: #ffffff;
    background-color: #4CAF50;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 10px auto;
}

button:hover {
    background-color: #388E3C;
}

button:disabled {
    background-color: #ddd;
    cursor: not-allowed;
}

#jogosGerados {
    margin-top: 20px;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    padding: 15px;
    text-align: left;
    width: 370px;
}

#jogosGerados p {
    margin: 5px 0;
    font-size: 1rem;
    color: #333333;
    word-break: break-word;
}

#salvarJogos {
    background-color: #007bff;
    margin-top: 15px;
}

#salvarJogos:hover {
    background-color: #0056b3;
}
@media (max-width: 768px) {
   #jogosGerados{
    width: 270px;
   }
}