#container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

#humanModel {
    position: relative;
    width: 400px;
}

#humanModel img {
    width: 400px;
    display: block;
}

#leftEarring, #rightEarring {
    position: absolute;
    width: 60px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
}

#leftEarring {
    top: 154px;
    left: 160px;
}

#rightEarring {
    top: 200px;
    right: 25px;
}

#sliderContainer {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

#skinToneSlider {
    width: 200px; 
}

#image-gallery {
    display: inline;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    justify-content: center;
    margin: 10px;
}

#image-gallery img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

#image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    #leftEarring {
        top: 122px;
        left: 28px;
    }
    #rightEarring {
        top: 125px;
        right: -8px;
    }
    #leftEarring, #rightEarring{
        height: 14px;
    }
}
