 /* Hide modal by default */
   #popupModal .modal {
        display: none; /* Initially hidden */
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        /* width: 100%;
        height: 100%; */
        background-color: rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
   #popupModal .modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: auto;
    height: 30%;
    display: flex
;
    justify-content: center;
}

   #popupModal .modal-content button {
        margin-top: 10px;
        padding: 10px 15px;
        border: none;
        background-color: #28a745;
        color: white;
        cursor: pointer;
        border-radius: 5px;
    }

    .modal-content button:hover {
        background-color: #218838;
    }