/* Image related styles */

/* Gallery */

#image-gallery {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.image-in-gallery {
    width: 300px;
    height: 200px;
    border-radius: 5px;
    display: inline-block;
}

.gallery-image-wrapper {
    width: fit-content;
    height: 200px;
    display: inline-block;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.3);
    margin-top: 15px;
    margin-left: 15px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: fit-content;
    height: fit-content;
    color: rgb(255, 255, 255);
    background-color: rgba(0, 0, 0, 0.3);
    padding-left: 5px;
    padding-right: 5px;
}

/* Single Image */

.gallery-image {
    max-width: 100%;
    max-height: 100%;
    display: block;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

#gallery-wrapper {
    display: flex;
    flex-wrap: wrap;
}

#image-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 auto;
}

#image-wrapper {
    display: flex;
    overflow: auto;
    flex: 1 1 auto;
}

#image-wrapper img {
    object-fit: contain;
    margin: auto;
    max-width: 95%;
    max-height: 95%;
}

/* Upload Preview Image */

#upload-preview-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}