/* Popup container - can be anything you want */
.popup {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Popup content */
.popup-content {
    position: relative;
    padding: 20px;
    width: 80%;
    max-width: 300px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    text-align: center; /* Center the content */
}

/* Close button */
.close-btn {
    position: absolute;
    top: -15px; /* Adjusted to position above the image */
    right: -15px; /* Adjusted to position outside the image */
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    background: white; /* Background to make it more visible */
    border-radius: 50%; /* Rounded button */
    padding: 5px 10px; /* Adjust padding for better click area */
    box-shadow: 0 0 5px rgba(0,0,0,0.2); /* Shadow for better visibility */
}

/* Image styling */
.popup img {
    max-width: 100%;
    height: auto;
}
