/* Estilos gerais */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

/* Estilização dos botões */
button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin: 5px;
}

button:hover {
    background-color: #0056b3;
}

/* Contêiner principal */
.container {
    width: 90%;
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Responsividade para tabelas */

table {
    width: 100%;
    border-collapse: collapse; /* Para ter bordas sem espaços */
    margin-top: 10px;
}

th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

th {
    background-color: #007BFF;
    color: white;
}



/* Classes para linhas alternadas */
.linha-clara {
    background-color: #f2f2f2; /* Cor mais clara */
}

.linha-escura {
    background-color: #e0e0e0; /* Cor mais escura */
}

/* Inputs responsivos */
input[type="text"], input[type="number"] {
    
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;

    width: 50px; /* Define um tamanho menor */
    padding: 5px; /* Reduz o preenchimento interno */
    font-size: 14px; /* Ajusta o tamanho da fonte */
}



/* Responsividade - Tamanho dos botões em telas pequenas */
@media (max-width: 600px) {

    table {
        
        overflow-x: auto;
        white-space: nowrap;
    }

    button {
        width: 100%;
    }
}


