/* Fixed Top Navigation Bar */
.electron-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: #ffffff;
    border-bottom: 1px solid #e6e7e9;
    display: flex;
    align-items: center;
    padding: 0 15px;
    z-index: 99999; /* Highest priority */
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Push the rest of the page down so the bar doesn't cover it */
body {
    padding-top: 50px !important; 
}

/* Navigation Buttons */
.nav-controls { display: flex; gap: 10px; }
.nav-btn {
    border: none;
    background: transparent;
    color: #555;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s;
}
.nav-btn:hover { background-color: #f0f0f0; color: #000; }

.app-label {
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #ddd;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}
