/* Estilos gerais para a página */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 10px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    text-align: center;
    flex-direction: column;
}

h1 {
    color: #333;
    margin-bottom: 20px;
}

.container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    width: 100%;
    max-width: 900px;
}

/* Estilo das tabelas */
table {
    width: 100%;
    border-collapse: separate;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #000; /* Fundo preto para a tabela */
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ffffff;
    background-color: #ffffff; /* Fundo preto para a tabela */
}

th {
    background-color: #1ab890;
    color: white;
}

/* Garantir que o hover funcione em todas as células também */
tr:hover td {
    background-color: #b3b3b3; /* Cor de fundo mais clara para todas as células ao passar o mouse */
}

/*estilo Botão*/
button {
    background-color: #15bb92; 
    color: white; 
    border: 1px solid black;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    margin: 1%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;  
}

button:hover {
    background-color: #12a077;  
    transform: translateY(-2px);  
}

button:active {
    background-color: #107b58; 
    transform: translateY(0); 
}


/*Alinhamento*/
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    .table-container {
        width: 90%;
        margin-bottom: 20px;
    }
}
