body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  margin-top: 40px;
  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-color: #448a61;
  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;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

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: #448a61;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

button:hover {
  background-color: #388E3C;
}
#salvarJogos{
 background-color: #007bff;
}
button:disabled {
  background-color: #ddd;
  cursor: not-allowed;
}

#jogosGerados {
  margin-top: 20px;
  max-height: 200px;
  width: 300px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  padding: 10px;
  text-align: left;
}
h2{
  text-align: left;
  margin-bottom:10px;
  color:green;

}

#jogosGerados p {
  margin: 5px 0;
  font-size: 1rem;
  color: #333;
}
@media (max-width: 768px) {
    body {
        margin-top: 90px;
    }
   .bilhete {
      margin-left: 30px;
    } 
    h2{
      text-align: center;
    }
    #gerarJogos{
      margin-left: 10px;
    }
    #limparDezenas{
      margin-left: 10px;
    }
    #jogosGerados{
      margin-left: 10px;
    }
    #salvarJogos{
      margin-left: 10px;
    }
/*     .input-group{
      margin-left: 150px;
    } */
}