/* Fullscreen Modal */
.custom-image-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Image */
.custom-image-modal img {
    max-width: 90%;
    max-height: 90%;
    transition: transform 0.3s ease;
}

/* Close Button */
.custom-close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 45px;
    cursor: pointer;
    z-index: 1000;
}

/* Zoom Controls */
.custom-zoom-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.custom-zoom-controls button {
    padding: 10px 15px;
    margin-right: 5px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
}