/**
 * Shared navbar styles – used across Dashboard, Control Center, Wizard, Logs, Sessions, etc.
 * Load this on every page that has the main navigation.
 */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-brand h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}
.nav-brand h1 a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-brand a {
    text-decoration: none;
    color: inherit;
}
.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}
.nav-restart-btn {
    margin-left: 4px;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f9fa;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: all 0.2s;
}
.nav-restart-btn:hover {
    background: #e9ecef;
    border-color: #667eea;
    color: #667eea;
}
@media (max-width: 768px) {
    .navbar { padding: 12px 16px; }
    .nav-container { flex-wrap: wrap; gap: 12px; }
    .nav-links { gap: 6px; }
    .nav-links a { padding: 6px 10px; font-size: 14px; }
}
