/* Styles for full-screen image modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    width: 100%;
    height: 100%;
    display: block;
    margin-top: calc();
    margin: auto;
    animation: zoom 0.6s;
    object-fit: contain;
}

.close,
.prev,
.next {
    color: black;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
    font-weight: bold;
    font-size: 3rem;
    position: absolute;
    cursor: pointer;
}

.close {
    top: 15px;
    right: 25px;
    z-index: 1001;
}

.prev,
.next {
    top: 50%;
    width: auto;
    padding: 16px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}