.lbnpp-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
}

.lbnpp-window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    z-index: 9999;
    border-radius: 8px;
    overflow: hidden;
    max-width: 95%;
    max-height: 95%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    padding: 20px;
    box-sizing: border-box;
}

.lbnpp-close {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 26px;
    color: #ffffff;
    background: transparent;
    border: none;
    cursor: pointer;
    text-shadow: 0 0 4px rgba(0,0,0,0.9);
}

.lbnpp-content {
    position: absolute;
    bottom: 20px;             /* Mută întregul text + formular în jos */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(255,255,255,0.5); /* opțional, poți elimina */
    color: #000;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
}

.lbnpp-title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
}

.lbnpp-text {
    margin: 0 0 20px;
    font-size: 14px;
}

.lbnpp-form {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.lbnpp-input {
    padding: 8px 10px;
    min-width: 220px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.lbnpp-button {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    background: #ff4081;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.lbnpp-button:hover {
    opacity: 0.9;
}

.lbnpp-message {
    font-size: 13px;
    min-height: 18px;
}

.lbnpp-success {
    color: #356a35;
}

.lbnpp-error {
    color: #ffb6b6;
}
