/* Glass-Morphic Navigation for App Pages */
.header {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
    padding: 0.75rem 1.5rem !important;
    z-index: 1000 !important;
}

/* Override existing header elements to match Aceternity vibe */
.header h1 {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    letter-spacing: -0.01em !important;
}

.header .subtitle {
    color: #64748b !important;
    font-weight: 500 !important;
    font-size: 0.7rem !important;
}

.nav-links {
    background: rgba(241, 245, 249, 0.6) !important;
    padding: 0.25rem 0.35rem !important;
    border-radius: 9999px !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.nav-link {
    border-radius: 9999px !important;
    padding: 0.4rem 0.85rem !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    color: #64748b !important;
    border: none !important;
    transition: all 0.2s ease !important;
}

.nav-link:hover {
    color: #0f172a !important;
    background: rgba(255, 255, 255, 0.8) !important;
}

.nav-link.active {
    background: #0f172a !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.header-btn {
    border-radius: 9999px !important;
    background: transparent !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.2s ease !important;
}

.header-btn:hover {
    background: #f8fafc !important;
    border-color: #cbd5e1 !important;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .header {
        padding: 0.5rem 1rem !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
    }

    .header h1 {
        font-size: 0.95rem !important;
    }

    .header .subtitle {
        font-size: 0.65rem !important;
    }

    .nav-links {
        padding: 0.2rem 0.25rem !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        order: 3 !important;
        flex-basis: 100% !important;
    }

    .nav-link {
        padding: 0.35rem 0.65rem !important;
        font-size: 0.7rem !important;
        white-space: nowrap !important;
    }

    .header-btn {
        width: 32px !important;
        height: 32px !important;
        padding: 0.2rem !important;
    }

    .header-center {
        flex: initial !important;
        text-align: left !important;
    }
}