.fvop-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.fvop-box {
    background: #f4c400;
    width: 400px;
    padding: 25px;
    text-align: center;
    position: relative;
    border-radius: 6px;
}

.fvop-box h2 {
    font-size: 40px;
    margin: 0;
    font-weight: 900;
}

.fvop-box h4 {
    margin: 10px 0;
    font-size: 30px;
}
.fvop-box p.mid-heading {
        margin: 0px;
    font-weight: 600;
    font-size: 21px;
}
.fvop-box p.small {
        margin: 0px;
}

.fvop-form input {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.fvop-form button {
    width: 100%;
    padding: 12px;
    background: #a68b00;
    color: #fff;
    border: none;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
}

.fvop-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.fvop-message {
    margin-top: 10px;
    font-weight: 600;
}

.fvop-close {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 22px;
}

.fvop-browse {
    margin-top: 15px;
    cursor: pointer;
    /*text-decoration: underline;*/
}

.fvop-floating {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #f4c400;
    width: 120px;
    height: 40px;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.fvop-floating span {
    font-size: 16px;
}

.fvop-floating:hover {
    transform: translateY(-3px);
}
