.vrbc-pdf-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin: 24px 0;
}

.vrbc-pdf-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 26px;
    border-radius: 8px;
    background: #086B44;
    color: #fff !important;
    font-family: "Incised 901 BT", "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .04em;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: background-color .2s ease, transform .2s ease;
}

.vrbc-pdf-action-button:hover,
.vrbc-pdf-action-button:focus {
    background: #007542;
    color: #fff !important;
    transform: translateY(-1px);
}

.vrbc-pdf-actions-error {
    color: #b32d2e;
    font-weight: 500;
}

@media (max-width: 520px) {
    .vrbc-pdf-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .vrbc-pdf-action-button {
        width: 100%;
    }
}
