﻿.image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.image-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
    background: white;
    border-radius: 8px;
    padding: 10px;
}

    .image-container img {
        width: 100%;
        height: auto;
        cursor: grab;
    }

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    border: none;
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
}
