/* style.css */
body {
    font-family: 'Arial', sans-serif;
    background-color: #FFE5E5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #E0AED0;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 400px;
}

h1 {
    color: #756AB6;
    margin-bottom: 20px;
}

form p {
    margin: 10px 0;
}

label {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
    color: #AC87C5;
}

input[type="text"] {
    width: calc(100% - 20px);
    padding: 10px;
    border: 2px solid #AC87C5;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
}

input[type="text"]:focus {
    border-color: #756AB6;
}

button {
    background-color: #756AB6;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #AC87C5;
}

#results {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #333;
}

#weight-guide {
    margin-top: 20px;
    background-color: #FFE5E5;
    padding: 10px;
    border-radius: 5px;
}

#weight-guide h3 {
    margin-bottom: 10px;
    color: #756AB6;
}

#weight-guide p {
    margin: 5px 0;
    color: #333;
}

#results {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #333;
    background-color: #FFE5E5;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #E0AED0;
}
