/* GNL Email Capture Modal Styles */
.gnl-email-capture-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gnl-email-capture-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.gnl-email-capture-modal {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.gnl-email-capture-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 5px 10px;
}

.gnl-email-capture-close:hover {
    color: #333;
}

.gnl-email-capture-modal h3 {
    margin-top: 0;
    color: #2d5a27;
    font-size: 24px;
}

.gnl-email-capture-modal p {
    color: #666;
    margin-bottom: 20px;
}

.gnl-email-capture-modal form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gnl-email-capture-modal input[type="email"],
.gnl-email-capture-modal input[type="text"] {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.gnl-email-capture-modal input[type="email"]:focus,
.gnl-email-capture-modal input[type="text"]:focus {
    outline: none;
    border-color: #2d5a27;
}

.gnl-capture-submit {
    background: #2d5a27;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.gnl-capture-submit:hover {
    background: #1e3d1a;
}

.gnl-capture-privacy {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin: 0;
}

.gnl-email-capture-success {
    text-align: center;
    padding: 20px;
}

.gnl-email-capture-success h3 {
    color: #2d5a27;
    margin-bottom: 15px;
}

.gnl-email-capture-success button {
    background: #2d5a27;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
}

.gnl-email-capture-success button:hover {
    background: #1e3d1a;
}

