    /*modal styling part */
    #modal {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--pure-white);
        padding: 20px;
        border-top: 1px solid gainsboro;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        text-align: center;
        z-index: 9999;
    }
    @media screen and (min-width:768px) {
        #modal {
            display: none;
            position: fixed;
            bottom: 0;
            left: 50%;
            width: 95%;
          transform: translateX(-50%);
          border-top-left-radius: 10px;
          border-top-right-radius: 10px;
            background-color: var(--pure-white);
            padding: 20px;
            border-top: 1px solid gainsboro;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
            text-align: center;
        }   
        #note{
            font-size: larger !important;
        }
    }


    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
.modal-body{
    text-align: left;
    margin-top: 20px;
}

    #close-btn {
        background-color: transparent;
        border: none;
        font-size: 18px;
        cursor: pointer;
        float: right !important;
    }

    #ok-btn {
        margin-top: 10px;
        width: 100%;
        color: var(--pure-white);
        background-color: var(--primary-yellow);
        border: none;
        border-radius: 10px;
        padding: 8px;
    }