.thumbnail:hover {
    transform: scale(1.05);
}

.slider-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.slider-image {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
}

/* .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 32px;
    color: #cfcfcf;
    cursor: pointer;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 4px 10px;
} */

.prev,
.next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    padding: 10px;
    z-index: 10000;
    user-select: none;
}

.prev {
    left: -4px;
}

.next {
    right: -4px;
}

/* .slide-count {
    position: fixed;
    bottom: 40px;
    font-size: 18px;
    color: #cfcfcf;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 12px;
    border-radius: 10px;
    z-index: 10001;
} */

/* @media screen and (min-width: 600px) {
    .slide-count {
        right: 50%;
        transform: translateX(50%);
    }
}

@media screen and (max-width: 599px) {
    .slide-count {
        left: 50%;
        transform: translateX(-50%);
    }
} */