﻿


.bv-confirm-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.bv-confirm-cancel,
.bv-confirm-confirm {
    min-width: 140px;
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 800;
    cursor: pointer;
}

.bv-confirm-cancel {
    background: #f3f4f6;
    color: #444;
}

.bv-confirm-confirm {
    color: #fff;
}

.bv-confirm-confirm--danger {
    background: #dc2626;
}

.bv-confirm-confirm--warning {
    background: #d97706;
}

.bv-confirm-confirm--primary {
    background: var(--cor_principal);
}

@media (max-width: 480px) {

    .bv-confirm-actions {
        flex-direction: column;
    }

    .bv-confirm-cancel,
    .bv-confirm-confirm {
        width: 100%;
    }
}



#bvFeedbackOverlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
    background: rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(2px);
}

#bvFeedbackHost {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
}