/* Popup overlay */
#nlp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
}

/* Popup */
#nlp-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 420px;
    border-radius: 8px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* Close button */
#nlp-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #000;
    color: #fff;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
}

/* Hidden class */
.nlp-hidden {
    display: none !important;
}

/* Cookie banner */
#nlp-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 15px;
    z-index: 99999;
    text-align: center;
}

#nlp-cookie-banner button {
    background: #4CAF50;
    color: #fff;
    border: none;
    padding: 8px 16px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 4px;
}