/* File: static/css/image.css */
#imageModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

#imageModal.hidden {
    display: none;
}

#imageModal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    cursor: default;
}

#imageModal button.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    color: white;
    font-size: 20px;
    border: none;
    cursor: pointer;
}
