.ndp-modal-close {
   width: 100%;
   display: flex;
   justify-content: flex-end;
   cursor: pointer;
   color: black;
}
.ndp-modal-label {
    color: black !important;
}
.ndp-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ndp-modal-content {
    background: #fff;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    text-align: center;
    font-family: Arial, sans-serif;
}
.ndp-modal-content h2 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}
#ndp-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
    font-size: 1rem;
}
#ndp-form label {
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-align: left;
    color: black;
}
#ndp-form button {
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
}
#ndp-form button:hover {
    background-color: #005177;
}
#ndp-message {
    font-size: 0.9rem;
    margin-top: 10px;
    min-height: 1.2em;
}