.report-export-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.report-export-actions .btn-export {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.report-export-actions .btn-export-pdf {
    border-color: rgba(215, 25, 32, .34);
    background: linear-gradient(135deg, #e21d25 0%, #c61017 58%, #a90d13 100%);
    color: #fff;
    box-shadow: none;
}

.report-export-actions .btn-export-pdf:hover:not(:disabled) {
    border-color: rgba(238, 45, 52, .5);
    background: linear-gradient(135deg, #ed252d 0%, #d0151c 58%, #b20e15 100%);
    box-shadow: none;
    transform: translateY(-1px);
}

.report-export-actions .btn-export:disabled {
    cursor: wait;
    opacity: .68;
}

@media (max-width: 640px) {
    .report-result-header,
    .report-export-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .report-export-actions,
    .report-export-actions .btn-export {
        width: 100%;
    }
}
