.imc-calculator {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.imc-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .form-group label {
        font-weight: 500;
    }

    .form-group input,
    .form-group select {
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
    }

button#calcular-imc {
    background-color: #2196F3;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    button#calcular-imc:hover {
        background-color: #1976D2;
    }

.resultado-imc {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    text-align: center;
}

.resultado-silhueta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    max-width: 300px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

    .resultado-silhueta svg {
        max-width: 200px;
        height: auto;
    }

.resultado-texto {
    font-size: 16px;
    color: #333;
    margin-top: 15px;
    text-align: center;
}

    .resultado-texto p {
        margin: 5px 0;
    }

.resultado-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: start;
    margin-top: 20px;
}

.tabela-imc {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-width: 250px;
}

    .tabela-imc h3 {
        margin-bottom: 10px;
        text-align: center;
        font-size: 16px;
        font-weight: 500;
    }

    .tabela-imc table {
        width: 100%;
        border-collapse: collapse;
    }

    .tabela-imc th,
    .tabela-imc td {
        padding: 8px;
        text-align: left;
        border-bottom: 1px solid #eee;
        font-size: 14px;
    }

    .tabela-imc .cor-indicador {
        width: 20px;
        height: 20px;
        border-radius: 4px;
        display: inline-block;
        vertical-align: middle;
        margin-right: 8px;
        border: 1px solid rgba(0,0,0,0.1);
    }

.resultado-silhueta {
    flex: 0 1 auto;
}