#fvp-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#fvp-popup-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.fvp-buttons {
    margin-top: 1.5rem;
}

.fvp-button {
    padding: 0.5rem 1rem;
    margin: 0 auto;
    border: none;
    text-decoration: none;
    background-color: #0071a1;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size:1.2em;
}
.fvp-button:hover
{
    background-color: #004161;
}
.fvp-secondary {
    background: #777;
}
.fvp-button-wrapper
{
    width:100%;
    display: grid;
    grid-template-columns: 100%;
    align-items:center;
    justify-items: center;
}
