/* ===== HEADER CSS ===== */
header {
    background-color: #2B415D;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
    height: 70px;
    box-sizing: border-box;
}

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

header img.logo {
    height: 50px;
    width: auto;
    margin-right: 15px;
}

.main-menu {
    display: flex;
    align-items: center;
}

.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

.main-menu ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 6px;
    background-color: #F28B02;
    transition: background-color 0.2s ease;
}

.main-menu ul li a:hover {
    background-color: #ff9f2d;
}

/* optioneel: logout-knop apart kleur geven */
.main-menu ul li.logout a {
    background-color: #c0392b;
}

.main-menu ul li.logout a:hover {
    background-color: #e74c3c;
}
