.goals-section {
    margin: 40px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.goals-section h2 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

th,
td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #333;
    color: white;
    font-weight: bold;
}

tr:hover {
    background-color: #f5f5f5;
}

.status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: bold;
}

.status.pendente {
    background-color: #fff3cd;
    color: #856404;
}

.status.progresso {
    background-color: #cfe2ff;
    color: #084298;
}

.status.concluido {
    background-color: #d1e7dd;
    color: #0f5132;
}