#ns-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.ns-popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#ns-popup-close {
    display: block;
    margin-top: 20px;
    width: 100%;
    background-color: #f6f6f6;
    color: black;
    border: none;
    padding: 10px;
    cursor: pointer;
    text-align: center;
}
