.app-navbar {
    position: relative;
    height: 60px;
    background: transparent;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.navbar-container {
    max-width: 1500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.navbar-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.navbar-title:hover {
    opacity: 0.8;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-link {
    color: #94a3b8;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.nav-link.active {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.navbar-right .logout-btn {
   background-color: rgba(220, 53, 69, 0.12);
    border: 1px solid rgba(220, 53, 69, 0.3);
    outline: none;
    color: #dc3545;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    opacity: 1;
}

.navbar-right .logout-btn:hover {
    opacity: 0.75; 
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar-right {
        position: absolute;
        top: 60px;
        right: 0;
        left: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #000000 0%, #1a1a2e 100%);
        backdrop-filter: blur(10px);
        padding: 20px;
        gap: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .navbar-right.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link,
    .navbar-right .logout-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}
