
.my-awesome-popup-modal {
    display: none; 
    position: fixed; 
    z-index: 99999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.6); 
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.my-awesome-popup-content {
    position: relative;
    background-color: transparent;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 600px;
    animation-name: my-awesome-popupanimatetop;
    animation-duration: 0.4s;
    text-align: center;
}

.my-awesome-popup-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    cursor: pointer;
}

.my-awesome-popup-close {
    color: #fff;
    background: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background 0.2s;
}

.my-awesome-popup-close:hover,
.my-awesome-popup-close:focus {
    background: #cc0000;
    text-decoration: none;
    cursor: pointer;
}

@keyframes my-awesome-popupanimatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}
