.report-job-card {
    border-left: 4px solid var(--bs-primary);
}

/*
 * EasyAdmin zeroes the margin between a button icon and its .btn-label, so
 * without an explicit gap the icon and text collide.
 */
.report-job-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.report-job-card .badge {
    padding: 0.45em 0.7em;
}

.report-job-progress-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/*
 * The native progress widget renders a dark track until its default
 * appearance is removed, so both the track and the value are styled here.
 */
.report-job-progress {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    width: 100%;
    height: 0.75rem;
    border-radius: 0.375rem;
    overflow: hidden;
    background-color: var(--bs-secondary-bg, #e9ecef);
    color: var(--bs-primary);
}

.report-job-progress::-webkit-progress-bar {
    background-color: var(--bs-secondary-bg, #e9ecef);
    border-radius: 0.375rem;
}

.report-job-progress::-webkit-progress-value {
    background-color: var(--bs-primary);
    border-radius: 0.375rem;
    transition: width 0.3s ease;
}

.report-job-progress::-moz-progress-bar {
    background-color: var(--bs-primary);
    border-radius: 0.375rem;
}

.report-job-progress-text {
    min-width: 3rem;
    color: var(--bs-secondary-color);
    font-variant-numeric: tabular-nums;
    text-align: right;
}
