/* QRLON BACKUPS V1 START */

.backups-page {
    width: 100%;
}


.backup-create-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}


.backup-select {
    min-width: 260px;
    height: 34px;

    padding: 0 10px;

    border: 1px solid #d7d7d7;
    border-radius: 6px;

    background: #fff;

    font-size: 12px;
    font-weight: 400;
}


.backup-hint {
    margin:
        0
        0
        12px;

    color: #707070;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
}


.backup-primary {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}


.backup-secondary {
    margin-top: 3px;

    color: #777;

    font-size: 11px;
    font-weight: 400;
    line-height: 1.3;
}


.backup-code {
    font-family:
        Consolas,
        Monaco,
        "Courier New",
        monospace;

    font-size: 11px;
    font-weight: 400;
}


.backup-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 24px;

    padding: 3px 8px;

    border: 1px solid #ddd;
    border-radius: 999px;

    font-size: 10px;
    font-weight: 500;
    line-height: 1;
}


.backup-ok {
    border-color: #a8ddb9;

    background: #e9f9ee;
    color: #176b32;
}


.backup-error {
    border-color: #efb4b4;

    background: #fff0f0;
    color: #b51d1d;
}


.backup-message {
    margin-top: 12px;

    padding: 9px 11px;

    border: 1px solid #b9dfc5;
    border-radius: 6px;

    background: #eefaf2;
    color: #176b32;

    font-size: 12px;
    font-weight: 400;
}


.backup-message.is-error {
    border-color: #efb4b4;

    background: #fff0f0;
    color: #b51d1d;
}


.backup-table th:last-child,
.backup-table td:last-child {
    text-align: right;
    white-space: nowrap;
}


.backup-download {
    text-decoration: none;
}


@media (max-width: 900px) {

    .backup-create-controls {
        width: 100%;
        flex-wrap: wrap;
    }

    .backup-select {
        min-width: 220px;
    }

    .backup-table {
        min-width: 1050px;
    }
}

/* QRLON BACKUPS V1 END */