.navbar {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.navbar-brand a {
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    color: #222;
}

.navbar-brand span {
    color: #2d6cdf;
}

.navbar-links {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: nowrap;
}

.navbar-links a {
    text-decoration: none;
    color: #444;
    font-size: 16px;
    padding: 6px 8px;
    border-radius: 6px;
    transition: 0.2s;
}

.navbar-links a:hover {
    background: #f2f6ff;
    color: #2d6cdf;
}

.nav-login-btn {
    background: #2d6cdf;
    color: white !important;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
    box-shadow: 0 2px 6px rgba(45, 108, 223, 0.25);
}

.nav-login-btn:hover {
    background: #1f55b5 !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(45, 108, 223, 0.35);
}

.logout-link {
    color: #d9534f !important;
}

.nav-toggle-label {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-toggle-label {
        display: none;
    }

    .navbar-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    .nav-toggle:checked + .nav-toggle-label + .navbar-links {
        display: flex;
    }
}
