.download-invoice-single-wrapper {
    display: flex;
    justify-content: end;
    flex-direction: column;
    align-items: flex-end;
}

.error-message-download-invoice {
    color: red;
    font-size: 11px !important;
}

.btn-download-invoice-single {
    font-size: 12px !important;
    margin-right: 0 !important;
    min-width: 173px !important;
    display: flex !important;
    justify-content: center;
    background-color: #fa6f26 !important;
    color: #fff !important;
    align-items: center;
}

.order-actions-table-wrapper {
    text-align: center;
    margin-bottom: 0 !important;
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
}

.btn-download-invoice-table {
    background-color: aliceblue;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 2px;
}

.btn-loading {
    display: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #b0c2cf;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
