/*===================================== 
YOU CAN WRIGHT CUSTOME CSS 
======================================*/
/* Popup Styles */
#popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; /* Adjusts width to 90% of the screen */
    max-width: 600px; /* Ensures it doesn't get too big on desktops */
    padding: 15px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    text-align: center;
    z-index: 1001;
}

/* Popup Image */
#popup img {
    width: 100%; /* Makes the image responsive */
    height: auto;
    border-radius: 10px;
}

/* Overlay Background */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* Close Button */
.close-btn {
    margin-top: 10px;
    padding: 10px;
    font-size: 16px; /* Larger for easy tapping */
    background: #1BBCE8;
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 150px;
    border-radius: 5px;
}