.lp-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.lp-overlay.lp-active {
    opacity: 1;
    visibility: visible;
}

.lp-content-box {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lp-content-box img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

.lp-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.lp-close-btn:hover {
    background: #c0392b;
}
