* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Popup Content */
.popup-content {
    position: relative;
    max-width: 380px;
   /* max-height: 80%; */
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Popup Image */
.popup-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 3px;
    right: 10px;
    font-size: 24px;
    color: #333;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}