/* FEATURE 30 - Backup UI */

.backup-row {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.backup-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.backup-timestamp {
    font-family: monospace;
    opacity: 0.8;
}

.btn-setting {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.btn-setting:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Specific styling for the Confirmation Modal */
#backup-confirm-modal .modal-content {
    max-width: 400px;
    border-top: 3px solid var(--brand-yellow); /* Warning color */
}

#backup-confirm-modal .modal-body {
    text-align: center;
    padding: 20px;
}

#backup-confirm-modal p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

#backup-confirm-modal .modal-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}