.image-window {
    display: flex;
    flex-direction: column;

    position: fixed;
    top: 10vh;
    left: 10vw;

    min-width: 440px;
    min-height: 200px;
    width: 40vw;
    height: 40vh;

    resize: both;
    overflow: hidden;

    background-color: rgba(200, 200, 200, .8);
    border: 1px solid rgba(232, 232, 232, 0.8);
    border-radius: 6px;

    box-shadow: 0 0 2px rgba(0, 0, 0, 1);
    backdrop-filter: blur(3px);

    transition: translate 1s, scale .50s;
}

.image-top-bar {
    display: flex;
    justify-content: space-between;
    height: 40px;

}

.image-info {
    overflow-x: hidden;
    margin-left: 10px;
    width: 100%;
    height: 40px;
    pointer-events: none;
}



.image-button-zone {
    display: flex;
    height: 23px;
    border-color: black;
    --align-self: flex-start;
    justify-self: flex-end;
    border-width: 1px;
    margin-right: 10px;
    gap: 1px;
}

.image-window-icon {
    width: 1.5vw;
    height: 1.5vw;
    user-select: none;
    pointer-events: none;
}

.image-name {
    display: inline-block;
    margin: 10px 0 0;
    text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
    font-family: Consolas, serif;
    font-size: clamp(.85vw, 13px, .90vw);
    user-select: none;
}

.image-viewer-content {
    --width: 99%;
    height: 100%;

    object-fit: scale-down;
    margin: auto 10px;
    margin-bottom: 10px;

    background-color: white;
    border: 1px solid #81868c;
    border-right-color: #b3bbc3;
    border-bottom-color: #b3bbc3;
    border-radius: 2px;
    word-wrap: break-word;
    overflow-y: scroll;
    box-shadow: 0 0 10px #c2c2c2;

    --transition: background-color 1s ease;
}