html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

#open-img {
    cursor: pointer;
}

#fullscreen-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

#fullscreen-overlay.active {
    display: flex;
}

.fullscreen-image {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

#close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.image-container {
    overflow: hidden;
    display: inline-block;

}

.img-transform {
    transition: transform 0.3s ease;
}

.img-transform:hover {
    transform: scale(1.03);
}


@media (max-width: 767px) {
    #sidebar,
   .m-hide {
        display: none;
    }

}
