.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    background-color: #020617;
    border-bottom: 2px solid #1e293b;
}

.nav-logo {
    font-size: 20px;
    font-weight: bold;
    color: #e5e7eb;
    text-decoration: none;
}

.nav-logo:hover {
    color: #38bdf8;
}

.nav-right {
    display: flex;
    gap: 18px;
}

.nav-link {
    color: #cbd5f5;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
    background-color: #1e293b;
    color: #38bdf8;
}

/* Active page (optioneel, zet class="nav-link active") */
.nav-link.active {
    background-color: #1e293b;
    color: #38bdf8;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
}

.nav-logo-img {
    height: 36px;       /* adjust if needed */
    width: auto;
}
