/* Isolation Wrapper */
#sonu-bio-tool {
    font-family: 'Segoe UI', sans-serif;
    background: #fff5e6;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
}

/* Reset Box Sizing inside tool */
#sonu-bio-tool * {
    box-sizing: border-box;
}

/* Main Container */
#sonu-bio-tool .sonu-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border: 2px solid #d4af37;
    border-radius: 10px;
}

/* Heading */
#sonu-bio-tool .bio-heading {
    text-align: center;
    color: #8B4513;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 28px;
    border-bottom: none; /* Theme Override */
    padding: 0;
}

/* Section Badge */
#sonu-bio-tool .bio-badge {
    background: #ffcc80;
    color: #5d4037;
    padding: 10px 15px;
    font-weight: bold;
    border-left: 5px solid #d84315;
    margin: 20px 0 15px 0;
    display: block;
    font-size: 16px;
    line-height: normal;
}

/* Grid System */
#sonu-bio-tool .bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#sonu-bio-tool .bio-group {
    margin-bottom: 10px;
}

/* Full Width for Address */
#sonu-bio-tool .full-width {
    grid-column: span 2;
}

/* Labels */
#sonu-bio-tool label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
    font-size: 14px;
}

/* Inputs & Selects (Strong override) */
#sonu-bio-tool input[type="text"],
#sonu-bio-tool input[type="date"],
#sonu-bio-tool input[type="email"],
#sonu-bio-tool select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc !important;
    border-radius: 4px;
    background: #fff;
    color: #333;
    height: 45px !important; /* Fix theme height issues */
    line-height: normal;
    box-shadow: none;
    font-size: 15px;
}

/* Photo Upload Box */
#sonu-bio-tool .photo-box {
    border: 2px dashed #d84315;
    background: #fff3e0;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

#sonu-bio-tool .photo-label {
    color: #d84315;
    cursor: pointer;
    display: inline-block;
}

#sonu-bio-tool input[type="file"] {
    display: none;
}

/* Flex Row for Brothers/Sisters */
#sonu-bio-tool .bio-flex-row {
    display: flex;
    gap: 10px;
}
#sonu-bio-tool .flex-col {
    flex: 1;
}

/* Submit Button */
#sonu-bio-tool .bio-btn-submit {
    background: #d84315;
    color: white;
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
    text-transform: uppercase;
}
#sonu-bio-tool .bio-btn-submit:hover {
    background: #bf360c;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #sonu-bio-tool .bio-grid {
        grid-template-columns: 1fr;
    }
    #sonu-bio-tool .full-width {
        grid-column: span 1;
    }
    #sonu-bio-tool .sonu-container {
        padding: 20px;
    }
}