Standardized the z-indexs and did some pop up updates

This commit is contained in:
2025-08-03 14:31:51 -06:00
parent 7cd979a959
commit 6d12d1aef1
18 changed files with 62 additions and 26 deletions

View File

@@ -1009,6 +1009,8 @@ function showStatus(message, type = 'info') {
container = document.createElement('div');
container.id = 'status-container';
container.className = 'status-container';
// Ensure proper z-index even if CSS hasn't loaded
container.style.zIndex = '12300';
document.body.appendChild(container);
}