/* ===== Shared Navigation Bar ===== */
.ae-nav {
    display: none;
    position: sticky;
    top: 0;
    z-index: 900;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    height: 48px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.ae-nav.visible {
    display: block;
}

.ae-nav-inner {
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 6px;
}

.ae-nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 12px;
    flex-shrink: 0;
}

.ae-nav-logo {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
}

.ae-nav-links {
    display: flex;
    gap: 1px;
    align-items: center;
}

.ae-nav-link {
    padding: 6px 14px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    transition: background 0.12s, color 0.12s;
    white-space: nowrap;
}

.ae-nav-link:hover {
    background: #f3f4f6;
    color: #111827;
}

.ae-nav-link.active {
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
    font-weight: 600;
}
