#whole_gallery {
    /*this will make the gallery invisible, it is changed in index.mjs to flex
      when there are images to display*/
    display: none;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 15px;
    margin-bottom: 25px;
}

#gallery_left {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 5px;
}

#image_gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#image_display {
    width: 400px;
}

#under_image{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    width: 400px;
}

#under_image .delete_icon{
    width: 40px;
    height: 40px;
}

#image_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
}

#image_title {
    font-size: x-large;
    font-weight: bold;
}

#image_nav {
    display: flex;
    flex-direction: row;
    margin-left: auto;
}

.nav_icon {
    background-repeat: no-repeat;
    height: 25px;
    width: 25px;
    background-position: center;
    background-size: 75%;
    background-color: #253a5e;
    border-radius: 5px;
    padding: 5px;
}

.nav_icon:hover {
    background-color: #4f8fba;
}

#next_image {
    background-image: url(../media/right_icon.png);
    margin-left: 2px;
}

#prev_image {
    background-image: url(../media/left_icon.png);
}