/* Add this CSS to your theme's style.css file or to the Custom CSS section in WordPress */

.body-shape-analyzer {
    margin: 20px auto;
    padding: 20px;
    max-width: 500px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.body-shape-analyzer h2 {
    text-align: center;
    margin-bottom: 20px;
}

.body-shape-analyzer form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.body-shape-analyzer label {
    font-weight: bold;
}

.body-shape-analyzer input {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.body-shape-analyzer button {
    padding: 5px 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.body-shape-analyzer button:hover {
    background-color: #0056b3;
}

.body-shape-analyzer #result {
    margin-top: 20px;
    text-align: center;
}
