/* Backup Management — layout + responsive */
.bm-page {
    font-family: Inter, ui-sans-serif, system-ui;
    background: #f6f8fb;
    color: #0f172a;
    padding: 4px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
}

.bm-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 24px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.bm-main,
.bm-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.bm-header,
.bm-card,
.bm-action,
.bm-summary,
.bm-strip {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.bm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    flex-wrap: wrap;
}

.bm-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    flex: 1 1 240px;
}

.bm-header-icon,
.bm-action-icon {
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #ede9fe;
    color: #5b21b6;
    flex: 0 0 auto;
}

.bm-header-icon { width: 56px; height: 56px; }
.bm-header-icon svg,
.bm-action-icon svg { width: 30px; height: 30px; }

.bm-header h1 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    line-height: 1.15;
    font-weight: 850;
    color: #07132b;
    overflow-wrap: anywhere;
}

.bm-header p,
.bm-action p,
.bm-card-head p {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.bm-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bm-settings,
.bm-filters button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #172033;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 750;
    font-size: 14px;
    min-height: 44px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.bm-settings svg,
.bm-filters svg { width: 17px; height: 17px; }

.bm-ready {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.bm-ready-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
    min-width: 0;
}

.bm-ready-item strong {
    display: block;
    font-size: 12px;
    font-weight: 850;
    color: #07132b;
    overflow-wrap: anywhere;
}

.bm-ready-item span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 650;
    color: #64748b;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.bm-ready-item.is-ok { border-color: #bbf7d0; background: #f3fff7; }
.bm-ready-item.is-bad { border-color: #fecaca; background: #fff5f5; }

.bm-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.bm-action {
    min-height: 0;
    padding: 22px;
    text-align: center;
    transition: 0.2s;
}

.bm-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.09);
}

.bm-action-icon { width: 58px; height: 58px; margin: 0 auto 14px; }
.bm-action h2 { margin: 0; color: #07132b; font-weight: 850; font-size: 16px; }

.bm-action button,
.bm-empty button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 18px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 850;
    padding: 11px 14px;
    min-height: 44px;
}

.bm-action button svg { width: 16px; height: 16px; }
.bm-purple { background: #fbfaff; border-color: #ddd6fe; }
.bm-purple button { background: #6d5dfc; }
.bm-blue { background: #f5fbff; border-color: #bfdbfe; }
.bm-blue button { background: #0b7ee8; }
.bm-orange { background: #fff8ed; border-color: #fed7aa; }
.bm-orange button { background: #f97316; }
.bm-green { background: #f3fff7; border-color: #bbf7d0; }
.bm-green button { background: #16a34a; }

.bm-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    overflow: hidden;
}

.bm-metric {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border-right: 1px solid #edf0f5;
    min-width: 0;
}

.bm-metric:last-child { border-right: 0; }
.bm-metric-icon,
.bm-file {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    flex: 0 0 auto;
}

.bm-metric svg,
.bm-file svg { width: 22px; height: 22px; }
.bm-metric span {
    display: block;
    color: #64748b;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.03em;
    font-weight: 800;
}

.bm-metric strong {
    display: block;
    margin-top: 4px;
    font-size: 16px;
    font-weight: 900;
    color: #07132b;
    overflow-wrap: anywhere;
    white-space: normal;
}

.bm-card { padding: 22px; }
.bm-history { padding: 0; }
.bm-card h2,
.bm-card-head h2 { margin: 0; font-size: 18px; font-weight: 850; color: #07132b; }

.bm-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid #edf0f5;
    flex-wrap: wrap;
}

.bm-filters {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    min-width: 0;
    overflow: visible;
}

.bm-filters input,
.bm-filters select,
.bm-restore-row input {
    height: 40px;
    border: 1px solid #dce3ee;
    border-radius: 12px;
    background: #fff;
    padding: 0 12px;
    font-size: 14px;
    color: #172033;
}

.bm-filters .mis-select {
    flex: 1 1 140px;
    min-width: 0;
    max-width: 100%;
}

.bm-filters .mis-select__btn {
    min-height: 40px;
    border: 1px solid #dce3ee;
    border-radius: 12px;
    background: #fff;
    font-size: 13px;
    font-weight: 700;
    width: 100%;
}

.bm-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

.bm-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.bm-table th {
    background: #f8fafc;
    color: #64748b;
    text-align: left;
    font-size: 12px;
    font-weight: 850;
    padding: 12px 14px;
    border-bottom: 1px solid #edf0f5;
}

.bm-table td {
    padding: 14px;
    border-bottom: 1px solid #edf0f5;
    color: #172033;
    font-size: 14px;
    vertical-align: middle;
}

.bm-name {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.bm-name strong {
    display: block;
    max-width: 260px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #07132b;
}

.bm-name span,
.bm-date span {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
}

.bm-badge {
    display: inline-flex;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.bm-purple-soft { background: #ede9fe; color: #5b21b6; }
.bm-blue-soft { background: #dbeafe; color: #1d4ed8; }
.bm-orange-soft { background: #ffedd5; color: #c2410c; }
.bm-green-soft,
.bm-ok { background: #dcfce7; color: #15803d; }
.bm-sky-soft { background: #e0f2fe; color: #0369a1; }
.bm-amber-soft,
.bm-warn { background: #fef3c7; color: #b45309; }
.bm-red-soft,
.bm-bad { background: #fee2e2; color: #b91c1c; }
.bm-run { background: #dbeafe; color: #1d4ed8; }
.bm-neutral { background: #f1f5f9; color: #475569; }

.bm-row-actions {
    display: flex;
    justify-content: flex-end;
    gap: 7px;
    flex-wrap: wrap;
}

.bm-row-actions a,
.bm-row-actions button {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border: 1px solid #e0e7ef;
    border-radius: 9px;
    background: #fff;
    color: #334155;
}

.bm-row-actions svg { width: 17px; height: 17px; }

.bm-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    color: #64748b;
    font-size: 13px;
    flex-wrap: wrap;
}

.bm-empty { text-align: center; padding: 64px 20px; }
.bm-empty > div:first-child {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin: 0 auto;
    background: #ede9fe;
    color: #5b21b6;
}
.bm-empty svg { width: 34px; height: 34px; }
.bm-empty h3 { margin: 16px 0 6px; font-size: 20px; font-weight: 850; color: #07132b; }
.bm-empty p { color: #64748b; }
.bm-empty div:last-child { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.bm-empty button { width: auto; background: #6d5dfc; }
.bm-empty button + button { background: #f97316; }

.bm-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    background: #eff6ff;
    border-color: #bfdbfe;
    padding: 16px;
}

.bm-strip div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    min-width: 0;
}

.bm-strip svg { width: 22px; height: 22px; flex: 0 0 auto; }

.bm-storage-card { overflow: hidden; }

.bm-storage-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.bm-storage-head h2 { margin: 0; }

.bm-storage-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bm-storage-live i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55);
    animation: bm-live-pulse 1.8s ease-out infinite;
}

.bm-storage {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.bm-donut {
    position: relative;
    display: grid;
    place-items: center;
    width: 148px;
    height: 148px;
    flex: 0 0 auto;
}

.bm-donut-svg {
    width: 148px;
    height: 148px;
    transform: rotate(-90deg);
    filter: drop-shadow(0 10px 18px rgba(109, 93, 252, 0.18));
}

.bm-donut-track,
.bm-donut-arc {
    fill: none;
    stroke-width: 12;
    stroke-linecap: round;
}

.bm-donut-track { stroke: #e8ebf3; }

.bm-donut-arc {
    stroke: url(#bmDonutGradient);
    transition: stroke-dashoffset 0.05s linear;
    filter: drop-shadow(0 0 6px rgba(109, 93, 252, 0.35));
}

.bm-storage-card [x-cloak] { display: none !important; }

.bm-donut.is-ready .bm-donut-arc {
    animation: bm-donut-glow 2.8s ease-in-out infinite;
}

.bm-donut-center {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
    pointer-events: none;
}

.bm-donut-center strong {
    font-size: 26px;
    font-weight: 900;
    color: #07132b;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.bm-donut-center span {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bm-legend { flex: 1; min-width: 160px; }

.bm-storage-meter {
    height: 8px;
    border-radius: 999px;
    background: #e8ebf3;
    overflow: hidden;
    margin-bottom: 16px;
}

.bm-storage-meter-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #7c6cf7, #6d5dfc 55%, #4f46e5);
    box-shadow: 0 0 12px rgba(109, 93, 252, 0.35);
    transition: width 0.08s linear;
    min-width: 0;
}

.bm-legend p,
.bm-legend-row,
.bm-policy p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 12px;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
}

.bm-legend-row {
    opacity: 0;
    transform: translateY(8px);
    animation: bm-legend-in 0.45s ease forwards;
    animation-delay: calc(var(--i, 0) * 90ms + 350ms);
}

.bm-legend strong,
.bm-policy strong { color: #07132b; }
.bm-legend i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    flex: 0 0 auto;
}
.bm-legend i.used {
    background: #6d5dfc;
    box-shadow: 0 0 0 3px rgba(109, 93, 252, 0.15);
}

@keyframes bm-legend-in {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bm-live-pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes bm-donut-glow {
    0%, 100% { filter: drop-shadow(0 0 4px rgba(109, 93, 252, 0.25)); }
    50% { filter: drop-shadow(0 0 10px rgba(109, 93, 252, 0.5)); }
}

@media (prefers-reduced-motion: reduce) {
    .bm-storage-live i,
    .bm-donut.is-ready .bm-donut-arc,
    .bm-legend-row {
        animation: none !important;
    }
    .bm-legend-row {
        opacity: 1;
        transform: none;
    }
    .bm-donut-arc,
    .bm-storage-meter-fill {
        transition: none !important;
    }
}

.bm-list { margin-top: 18px; display: flex; flex-direction: column; gap: 18px; }
.bm-list > div,
.bm-location { display: flex; align-items: center; gap: 12px; min-width: 0; }
.bm-list-icon,
.bm-location > div {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #dcfce7;
    color: #15803d;
    flex: 0 0 auto;
}
.bm-list svg,
.bm-location svg { width: 20px; height: 20px; }
.bm-list p,
.bm-location p { margin: 0; flex: 1; min-width: 0; }
.bm-list strong,
.bm-location strong { display: block; color: #07132b; font-weight: 850; overflow-wrap: anywhere; }
.bm-list span,
.bm-location span { display: block; color: #64748b; font-size: 13px; font-weight: 600; overflow-wrap: anywhere; }
.bm-list b { font-size: 13px; color: #07132b; white-space: nowrap; }
.bm-location b {
    background: #dcfce7;
    color: #15803d;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
}

.bm-error {
    display: block;
    margin-top: 4px;
    color: #b91c1c;
    font-size: 11px;
    font-weight: 700;
    max-width: 320px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bm-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(5px);
    padding: 20px;
    overflow-y: auto;
}

.bm-modal {
    width: min(460px, 100%);
    background: #fff;
    border: 1px solid #fee2e2;
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
    padding: 28px;
    text-align: center;
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
}

.bm-modal-settings { width: min(760px, 100%); text-align: left; }
.bm-modal-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    border-radius: 18px;
    background: #fee2e2;
    color: #dc2626;
}
.bm-modal-icon-settings { background: #ede9fe; color: #5b21b6; }
.bm-modal-icon svg { width: 30px; height: 30px; }
.bm-modal h2 { margin: 0; color: #07132b; font-size: 22px; font-weight: 900; }
.bm-modal p { margin: 10px 0 0; color: #64748b; font-size: 14px; line-height: 1.55; font-weight: 600; }
.bm-modal-file {
    margin-top: 16px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    border-radius: 14px;
    padding: 11px 12px;
    color: #172033;
    font-size: 13px;
    font-weight: 800;
    word-break: break-all;
}
.bm-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 22px;
    flex-wrap: wrap;
}
.bm-modal-actions button {
    border: 0;
    border-radius: 12px;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 850;
    min-height: 44px;
}
.bm-modal-cancel { background: #f1f5f9; color: #334155; }
.bm-modal-delete { background: #dc2626; color: #fff; }
.bm-modal-delete:disabled { opacity: 0.65; cursor: not-allowed; }
.bm-modal-save { background: #2B337E; color: #fff; }
.bm-modal-restore .bm-modal-icon-restore { background: #dbeafe; color: #1d4ed8; }
.bm-restore-input {
    width: 100%;
    margin-top: 14px;
    height: 44px;
    border: 1px solid #dce3ee;
    border-radius: 12px;
    background: #fff;
    padding: 0 12px;
    font-size: 14px;
    color: #172033;
    font-weight: 700;
}
.bm-modal-restore-btn { background: #1d4ed8; color: #fff; }
.bm-modal-restore-btn:disabled { opacity: 0.55; cursor: not-allowed; }

.bm-settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 18px;
}
.bm-settings-grid label { display: flex; flex-direction: column; gap: 6px; }
.bm-settings-grid label span { font-size: 12px; font-weight: 800; color: #475569; }
.bm-settings-grid input,
.bm-settings-grid select {
    height: 42px;
    border: 1px solid #dce3ee;
    border-radius: 12px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 700;
    color: #172033;
    background: #fff;
}
.bm-settings-grid .bm-span-2 { grid-column: 1 / -1; }
.bm-settings-grid .bm-check { flex-direction: row; align-items: center; gap: 10px; min-height: 42px; }
.bm-settings-grid .bm-check input { width: 18px; height: 18px; }
.bm-settings-grid .mis-select__btn {
    min-height: 42px;
    border: 1px solid #dce3ee;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
}

.fi-page:has(.bm-page) .fi-header-heading:empty,
.fi-page:has(.bm-page) .fi-header:has(h1:empty) {
    display: none !important;
}

.fi-page:has(.bm-page) .fi-main-ctn,
.fi-page:has(.bm-page) .fi-page-content {
    min-width: 0;
    max-width: 100%;
}

/* Stack side panel earlier so action cards stay readable with Filament sidebar open */
@media (max-width: 1500px) {
    .bm-layout { grid-template-columns: 1fr; }
    .bm-side {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        align-items: start;
    }
}

@media (max-width: 1100px) {
    .bm-side { grid-template-columns: 1fr; }
    .bm-header,
    .bm-card-head {
        align-items: stretch;
        flex-direction: column;
    }
    .bm-header-actions { width: 100%; }
    .bm-filters {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }
    .bm-filters > input:first-child,
    .bm-filters > button { grid-column: 1 / -1; }
    .bm-summary {
        gap: 12px;
        background: transparent;
        border: 0;
        box-shadow: none;
        overflow: visible;
    }
    .bm-metric {
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
    }
}

@media (max-width: 768px) {
    .bm-page { padding: 0; }
    .bm-main,
    .bm-side { gap: 16px; }
    .bm-header,
    .bm-card { padding: 18px; }
    .bm-header-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .bm-header-actions .bm-settings {
        width: 100%;
        justify-content: center;
    }
    .bm-actions,
    .bm-ready,
    .bm-summary,
    .bm-strip,
    .bm-settings-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bm-pagination {
        flex-direction: column;
        align-items: stretch;
    }
    .bm-storage {
        flex-direction: column;
        align-items: center;
    }
    .bm-legend { width: 100%; }
}

@media (max-width: 640px) {
    .bm-actions,
    .bm-ready,
    .bm-summary,
    .bm-strip,
    .bm-side,
    .bm-settings-grid,
    .bm-header-actions,
    .bm-filters {
        grid-template-columns: 1fr !important;
    }

    .bm-filters > input:first-child,
    .bm-filters > button,
    .bm-settings-grid .bm-span-2 { grid-column: auto; }

    .bm-header-actions .bm-settings,
    .bm-filters > *,
    .bm-filters .mis-select,
    .bm-filters .mis-select__btn {
        width: 100% !important;
        max-width: 100% !important;
    }

    .bm-modal-actions { flex-direction: column-reverse; }
    .bm-modal-actions button { width: 100%; }
    .bm-empty div:last-child { flex-direction: column; align-items: stretch; }
    .bm-empty button { width: 100%; margin-top: 8px; }

    .bm-table { min-width: 0; }
    .bm-table-wrap {
        overflow: visible;
        padding: 12px;
        background: #f8fafc;
    }
    .bm-table,
    .bm-table tbody,
    .bm-table tr,
    .bm-table td {
        display: block;
        width: 100%;
        min-width: 0;
    }
    .bm-table thead { display: none; }
    .bm-table tbody { display: grid; gap: 12px; }
    .bm-table tr {
        overflow: hidden;
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 7px 18px rgba(15, 23, 42, 0.05);
    }
    .bm-table td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        border-bottom: 1px solid #edf0f5;
        padding: 10px 12px;
        text-align: right;
        overflow-wrap: anywhere;
    }
    .bm-table td::before {
        flex: 0 0 5.6rem;
        color: #64748b;
        font-size: 11px;
        font-weight: 850;
        text-align: left;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }
    .bm-table td:nth-child(1)::before { content: "Backup"; }
    .bm-table td:nth-child(2)::before { content: "Type"; }
    .bm-table td:nth-child(3)::before { content: "Size"; }
    .bm-table td:nth-child(4)::before { content: "Status"; }
    .bm-table td:nth-child(5)::before { content: "Verified"; }
    .bm-table td:nth-child(6)::before { content: "Created"; }
    .bm-table td:nth-child(7)::before { content: "Created by"; }
    .bm-table td:nth-child(8)::before { content: "Actions"; }
    .bm-table td:first-child { display: block; padding: 14px 12px; text-align: left; }
    .bm-table td:first-child::before { display: block; margin-bottom: 9px; }
    .bm-table td:last-child { border-bottom: 0; }
    .bm-name { width: 100%; }
    .bm-name strong { max-width: 100%; white-space: normal; }
    .bm-row-actions { flex: 1; justify-content: flex-end; }
}
