/* Responsive Images CSS */

/* Global responsive image rules */
img {
    max-width: 100%;
    height: auto;
}

/* Profile images */
.profile-image img,
.profile-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card images */
.card img {
    max-width: 100%;
    height: auto;
}

/* Gender selection images */
.gender-icon img {
    max-width: 100%;
    height: auto;
}

/* State selection images */
.state-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Blood group and diet type images */
.small-card img {
    max-width: 100%;
    height: auto;
}

/* Profile card images */
.profile-card img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Responsive adjustments for different screen sizes */
@media (max-width: 768px) {
    /* Adjust profile image size on mobile */
    .profile-image-container {
        width: 150px;
        height: 150px;
    }
    
    /* Adjust card images on mobile */
    .card-select img {
        width: 48px;
        height: 48px;
    }
    
    /* Adjust gender icons on mobile */
    .gender-icon img {
        width: 60px;
        height: 60px;
    }
    
    /* Adjust state card images on mobile */
    .state-card img {
        height: 100px;
    }
    
    /* Adjust profile avatar on mobile */
    .profile-avatar {
        width: 120px;
        height: 120px;
    }
}

/* Smaller mobile devices */
@media (max-width: 576px) {
    /* Further reduce profile image size */
    .profile-image-container {
        width: 120px;
        height: 120px;
    }
    
    /* Further adjust card images */
    .card-select img {
        width: 40px;
        height: 40px;
    }
    
    /* Further adjust gender icons */
    .gender-icon img {
        width: 50px;
        height: 50px;
    }
    
    /* Further adjust profile avatar */
    .profile-avatar {
        width: 100px;
        height: 100px;
    }
}