#image_gallery {
    position: fixed;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
    background: gray;
    /*border-radius: 30px;*/
    /*padding: 10px;*/
    max-width: 80%;
    max-height: 80%;
    overflow: auto;
    display: none;
}

#image_gallery #imageModal {

}

#image_gallery #imageStrip {
    display: flex;
    overflow-x: auto;
    /* gap: 10px; */
    /* padding: 20px; */
    /* max-width: 90%; */
    /* max-height: 90%; */
    /* background: rgba(255,255,255,0.1); */
    /* border-radius: 12px; */
}

#image_gallery #imageStrip img {
    width: 200px;
    height: 150px;
    object-fit: contain;
    background: #f0f0f0;
    margin: 5px;
    cursor: pointer;
    border-radius: 6px;
}

#image_gallery #imageStrip img:hover {
    border-color: #00aced;
}
