/* Estilização do modal */
#wppa-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}
#wppa-modal-content {
    background: #fff;
    padding: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border-radius: 4px;
}
.wppa-payment-link-container {
    margin: 20px 0;
}
#wppa-payment-link {
    background: #0071a1;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
}
#wppa-verify-button {
    background: #0071a1;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
#wppa-verify-button:hover, #wppa-payment-link:hover {
    background: #005a87;
}
.wppa-cookie-notice {
    margin-top: 15px;
    padding: 10px;
    background-color: #fff8e5;
    border: 1px solid #ffeb8e;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}
