/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* General Styles */
#lash-health-form {
    font-family: 'Poppins', sans-serif;
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Section Headers */
#lash-health-form h2, 
#lash-health-form h3, 
#lash-health-form h4 {
    font-weight: 600;
    text-align: center;
    color: #333;
}

/* Labels */
#lash-health-form label {
    display: block;
    font-weight: 400;
    margin: 10px 0 5px;
    color: #555;
}

/* Radio Buttons */
#lash-health-form input[type="radio"] {
    margin-right: 5px;
}

/* Form Layout */
#lash-health-form div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Styling Canvases */
.canvas-container {
    text-align: center;
    margin: 10px auto;
}

.canvas-container canvas {
    width: 100%;
    max-width: 250px;
    height: auto;
    border: 2px solid #444;
    border-radius: 5px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Notes Section */
#lash-health-form textarea {
    width: 100%;
    height: 80px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    font-family: 'Poppins', sans-serif;
}

/* Submit Button */
#lash-health-form input[type="submit"] {
    width: 100%;
    background: #0073e6;
    color: #fff;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#lash-health-form input[type="submit"]:hover {
    background: #005bb5;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    #lash-health-form {
        padding: 15px;
    }

    #lash-health-form div {
        flex-direction: column;
        align-items: center;
    }

    .canvas-container canvas {
        max-width: 200px;
    }
}
