/* Shared public buttons. Namespaced to avoid Bootstrap collisions. */
.bv-button {
    min-height: 50px;
    padding: 13px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.bv-button:hover {
    transform: translateY(-1px);
}

.bv-button-primary {
    background: var(--bv-blue-500);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(47, 111, 237, 0.22);
}

.bv-button-primary:hover {
    background: var(--bv-blue-700);
    color: #ffffff;
}

.bv-button-secondary {
    border-color: var(--bv-border);
    background: #ffffff;
    color: var(--bv-navy-900);
}

.bv-button-secondary:hover {
    border-color: var(--bv-blue-500);
    color: var(--bv-blue-500);
}
