function showSaveSuccess() {
// Ищет любой заголовок или блок в панели истории, куда можно вставить текст
var container = document.getElementById('diary-history-content') || document.body;
var banner = document.createElement('div');
banner.style.cssText = "position:fixed; top:20px; left:50%; transform:translateX(-50%); background:#2bc0b4; color:#fff; padding:10px 20px; border-radius:4px; font-weight:bold; z-index:9999; box-shadow:0 4px 12px rgba(0,0,0,0.5);";
banner.innerText = "✔ Резервная копия истории успешно сохранена!";
container.appendChild(banner);
setTimeout(function() {
banner.remove();
}, 3500);
}