/* Popup styles */
.popup {
    display: block;
    position: fixed;
    top: 120px; /* Adjust this value to position it below the header */
    right: 20px; /* Place it on the right side */
    width: 500px; /* Set a smaller width */
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border-radius: 5px;
    padding: 15px;
}

/* Popup content */
.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    position: relative;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Adds a slight shadow for better visibility */
}

/* Title in the popup */
.popup h3 {
    margin-top: 0;
}

/* Close button */
.close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}
