/* Isolation ID */
#umesh-bio-tool {
    font-family: 'Segoe UI', sans-serif;
    background: #fdf2f6; /* Very light pink bg */
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

#umesh-bio-tool * {
    box-sizing: border-box;
}

/* Main Container */
#umesh-bio-tool .umesh-container {
    max-width: 1050px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-top: 6px solid #D81B60; /* Pink Top Border */
}

/* Main Title */
#umesh-bio-tool .bio-main-title {
    text-align: center;
    color: #D81B60;
    font-size: 28px;
    margin-bottom: 30px;
    border-bottom: 2px dashed #eee;
    padding-bottom: 15px;
    line-height: normal;
}

/* Section Badge */
#umesh-bio-tool .umesh-badge {
    background: #FFF0F5; /* Lavender Blush */
    color: #D81B60;
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0 15px 0;
    padding: 10px 15px;
    border-radius: 5px;
    border-left: 5px solid #D81B60;
}

/* Photo Upload Section */
#umesh-bio-tool .umesh-photo-section {
    margin-bottom: 20px;
    background: #fff0f5;
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed #D81B60;
}

#umesh-bio-tool .photo-label {
    color: #D81B60;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

#umesh-bio-tool small {
    color: #666;
    display: block;
    margin-top: 5px;
    font-size: 12px;
}

/* Grid Layout */
#umesh-bio-tool .umesh-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#umesh-bio-tool .umesh-group {
    margin-bottom: 5px;
}

#umesh-bio-tool label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
    font-size: 14px;
}

/* Inputs & Selects */
#umesh-bio-tool input[type="text"], 
#umesh-bio-tool input[type="file"],
#umesh-bio-tool select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc !important;
    border-radius: 6px;
    font-size: 15px;
    background: #fff;
    height: 48px !important; /* Fixed Height to fight themes */
    color: #333;
}

#umesh-bio-tool input[type="file"] {
    padding: 10px;
    background: #fff;
    height: auto !important; /* File input height auto */
}

#umesh-bio-tool input:focus, 
#umesh-bio-tool select:focus {
    border-color: #D81B60 !important;
    outline: none;
    box-shadow: 0 0 5px rgba(216, 27, 96, 0.2);
}

/* Flex Rows */
#umesh-bio-tool .umesh-date-row,
#umesh-bio-tool .umesh-row {
    display: flex;
    gap: 10px;
}

#umesh-bio-tool .umesh-date-row select,
#umesh-bio-tool .umesh-col {
    flex: 1;
}

#umesh-bio-tool .span-full {
    grid-column: span 2;
}

/* Submit Button */
#umesh-bio-tool .umesh-btn {
    background: linear-gradient(135deg, #D81B60, #ad1457);
    color: white;
    width: 100%;
    padding: 16px;
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 30px;
    transition: transform 0.2s;
    box-shadow: 0 4px 15px rgba(216, 27, 96, 0.3);
}

#umesh-bio-tool .umesh-btn:hover {
    transform: translateY(-2px);
    background: #ad1457;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #umesh-bio-tool .umesh-grid {
        grid-template-columns: 1fr;
    }
    #umesh-bio-tool .span-full {
        grid-column: span 1;
    }
    #umesh-bio-tool .umesh-date-row {
        flex-direction: column;
    }
    #umesh-bio-tool .umesh-container {
        padding: 20px;
    }
}