/* Ideal Weight Calculator Stylesheet */
.iw-wrapper {
    font-family: system-ui, -apple-system, sans-serif;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
}

.iw-container {
    background: #ffffff;
    padding: 24px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    width: 100%;
    max-width: 320px; /* Kept narrow for AdSense banners */
    box-sizing: border-box;
}

.iw-container h2 {
    margin-top: 0;
    font-size: 1.6rem;
    color: #111827;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 800;
}

.iw-input-group {
    margin-bottom: 16px;
    text-align: left;
}

.iw-input-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4b5563;
}

.iw-input-group input, 
.iw-input-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1rem;
    background: #f9fafb;
    color: #111827;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.iw-input-group input:focus, 
.iw-input-group select:focus {
    outline: none;
    border-color: #0d9488; /* Medical Teal */
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
    background: #ffffff;
}

.iw-note {
    display: block;
    margin-top: 6px;
    font-size: 0.75rem;
    color: #6b7280;
}

.iw-btn {
    width: 100%;
    background: #0d9488; /* Medical Teal */
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s;
    box-shadow: 0 4px 6px -1px rgba(13, 148, 136, 0.3);
}

.iw-btn:hover {
    background: #0f766e;
}

.iw-result-box {
    margin-top: 24px;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    background: #f0fdfa; /* Light Teal Tint */
    border: 1px solid #99f6e4;
    display: none; /* Hidden until calculated */
    transition: all 0.3s ease;
}

.iw-result-box h3 {
    margin: 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #0f766e;
}

.iw-result-main {
    margin: 10px 0 5px 0;
    font-size: 2.8rem;
    font-weight: 900;
    color: #115e59;
}

.iw-result-sub {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #0f766e;
}