/* Fix for button clickability issues */

/* Ensure navbar has higher z-index than loading screen */
.navbar {
    z-index: 10000 !important;
}

/* Ensure nav-actions and buttons are properly displayed */
.nav-actions {
    z-index: 10001 !important;
    position: relative !important;
}

.nav-actions .btn {
    z-index: 10002 !important;
    display: inline-flex !important;
    pointer-events: auto !important;
    position: relative !important;
}

/* Ensure loading screen doesn't interfere when hidden */
.loading-screen.hidden {
    z-index: -1 !important;
    pointer-events: none !important;
}

/* Ensure notifications are visible above everything */
.notification {
    z-index: 10003 !important;
}