/* Estilos para a tabela de resultados da simulação */
.table-simulador {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden; /* Garante que o border-radius seja aplicado nas células */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.table-simulador thead tr {
    background-color: #4CAF50; /* Verde principal */
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}

.table-simulador th,
.table-simulador td {
    padding: 12px 15px;
    text-align: center;
}

.table-simulador tbody tr {
    border-bottom: 1px solid #dddddd;
    background-color: #f9f9f9;
}

.table-simulador tbody tr:last-of-type {
    border-bottom: 2px solid #4CAF50;
}

.table-simulador tbody tr:hover {
    background-color: #f1f1f1;
}

.aviso-simulacao {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-top: 15px;
}

.text-danger {
    color: #dc3545;
    font-weight: bold;
    text-align: center;
}

/* Ajustes no botão de cálculo do formulário do Elementor (opcional) */
#form-simulador .elementor-button {
    background-color: #28a745 !important;
    border-radius: 30px !important;
    padding: 15px 40px !important;
    font-size: 18px !important;
    transition: background-color 0.3s ease;
}

#form-simulador .elementor-button:hover {
    background-color: #218838 !important;
}