*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}


.wl-container h1, .wl-container h2{ text-align:center; color:#2c3e50; padding-bottom:15px}

.wl-container{
    max-width:650px;
    margin:40px auto;
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

.wl-input-group{ margin-bottom:15px; }

.wl-input-group label{
    font-weight:bold;
    display:block;
    margin-bottom:6px;
}

.wl-field-row{
    display:flex;
    gap:10px;
}

.wl-field-row input,
.wl-field-row select{
    flex:1;
    padding:10px;
    border-radius:6px;
    border:1px solid #ccc;
    font-size:16px;
}

.wl-button{
    width:100%;
    padding:12px;
    background:#27ae60;
    color:#fff;
    border:none;
    font-size:18px;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

.wl-button:hover{ background:#1e8449; }

.wl-result{
    display:none;
    margin-top:25px;
    background:#eafaf1;
    border-left:4px solid #27ae60;
    padding:20px;
    border-radius:8px;
}

.wl-table{
    width:100%;
    border-collapse:collapse;
    margin-top:15px;
}

.wl-table th,.wl-table td{
    border:1px solid #ccc;
    padding:10px;
}

.wl-table th{
    background:#27ae60;
    color:#fff;
}
.notet{
    font-weight: bold;
    text-align: center;
    padding: 11px 0px;
}
.wl-input-group input{
    padding:10px;
    border-radius:6px;
    border:1px solid #ccc;
    font-size:16px;
	width:100%
}
.wl-field-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap; /* allows stacking on small screens */
}

.wl-field-row input,
.wl-field-row select{
  width:100%; /* ensure input fills flex box */
}
/* Info Section Wrapper */
.info-section {
    background: #f9fbfd;
    padding: 40px 25px;
    margin-top: 40px;
    border-radius: 10px;
	margin-bottom:40px
}

/* Section Headings */
.info-section h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
}

.info-section h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    border-left: 4px solid #4CAF50;
    padding-left: 10px;
}

/* BMI List Styling */
.info-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-section ul li {
    background: #ffffff;
    padding: 14px 16px;
    margin-bottom: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    font-size: 16px;
    color: #444;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover Effect */
.info-section ul li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Highlight Labels */
.info-section ul li strong {
    color: #222;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .info-section {
        padding: 25px 15px;
    }

    .info-section h2 {
        font-size: 22px;
    }

    .info-section h3 {
        font-size: 18px;
    }

    .info-section ul li {
        font-size: 15px;
        padding: 12px;
    }
}



@media(max-width:768px){
    .wl-field-row{ flex-direction:column; }
	.wl-container h1, .wl-container h2{ font-size:18px }

.wl-container{
    max-width:95%;
    width:95%;
    margin:20px auto;
}

}