
#avp-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
#avp-popup {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
#avp-popup .avp-logo {
    max-width: 100%;
    max-height: 100px;
    margin-bottom: 20px;
}
#avp-popup h2 {
    margin-bottom: 10px;
    font-size: 24px;
}
#avp-popup p {
    margin-bottom: 25px;
    font-size: 16px;
    color: #555;
}
.avp-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.avp-btn {
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
.avp-btn-yes {
    background: rgb(27, 94, 32);
    color: #fff;
}
.avp-btn-yes:hover {
    background: rgb(27, 94, 32);
}
.avp-btn-no {
    background: #ee6c4d;
    color: #fff;
}
#avp-content h2 {
  color: #3c3c3c;
  font-size: 18px;
}
.avp-btn-no:hover {
    background: #ee6c4d;
}
