#menta-popup-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

#menta-popup-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    height: 80vh; /* Set a max visible height */
    margin: 5% auto;
    background: #fff;
    padding: 40px 20px 20px 20px;
    border-radius: 8px;
    overflow-y: auto; /* Enable vertical scroll */
}

#menta-close-btn {
    position: absolute;
    top: 0px;
    right: 7px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10000;
}

@media (max-width: 480px) {
    #menta-popup-content {
        height: 90vh;
        padding: 15px;
    }
}