aside {
    width: 100%; /* Ajustado para largura total */
    background-color: #f4f4f4;
    padding: 10px;
    box-sizing: border-box; /* Garantir que o padding não afete a largura total */
}

.tabs {
    display: flex; /* Usar flexbox para organizar os botões em linha */
    flex-direction: row; /* Alinhar os botões horizontalmente */
    padding: 0; /* Remover o padding padrão */
    margin: 0; /* Remover a margem padrão */
    list-style-type: none; /* Remover marcadores de lista */
}

.tabs button {
    flex: 1; /* Cada botão ocupa um espaço igual */
    padding: 10px;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    margin-right: 5px; /* Espaçamento entre os botões */
    text-align: center; /* Alinhar texto ao centro */
}

.tabs button.active {
    /*background-color: #ffc107;*/
    background-color: green;
}

.tab-content {
    display: none;
    padding: 10px;
}

.tab-content.active {
    display: block;
}

button {
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #5cb85c;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #4cae4c;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
/*
table, th, td {
    border: 1px solid #ddd;
}
*/
th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f4f4f4;
}
