/* Shared Styles - Navigation Bar */

.navbar {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: bold;
    color: #667eea;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand:hover {
    color: #764ba2;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    background: #f0f0f0;
    color: #667eea;
}

.nav-links a.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Mobile responsive navbar */
@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
    }

    .nav-links a {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }

    .nav-brand {
        font-size: 1.2rem;
    }
}
