/* navigation.css - Stijlen voor de navigatiebalk */

.navbar {
    width: 100%;
    background-color: #2a2a2a;
    color: white;
    padding: 5px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.navbar .left-content {
    position: absolute;
    left: 20px;
    display: flex;
    align-items: center;
}

.navbar img {
    height: 30px;
    margin-right: 2px;
}

/* Verwijder hover-effecten voor de link in .left-content */
.left-content a {
    background-color: inherit !important;
    color: inherit !important;
    text-decoration: none !important;
    cursor: pointer;
}

.left-content a:hover, .left-content a:focus, .left-content a:active {
    background-color: inherit !important;
    color: inherit !important;
    text-decoration: none !important;
}

.left-content a img {
    cursor: pointer;
}

.navbar-text {
    font-family: 'Playwrite NL', sans-serif;
    font-weight: 170;
    font-size: 1em;
    color: white;
    margin-left: 10px;
    text-transform: none;
}

.navbar a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 12px 20px;
    display: inline-block;
    font-family: 'Andale Mono', monospace;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
    border-radius: 3px;
    margin: 0 5px;
}

.navbar a:hover {
    background-color: #4a6b8f;
    color: #ffffff;
}

.dropdown {
    display: inline-block;
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #2a2a2a;
    min-width: 160px;
    z-index: 300;
    text-align: left;
    padding-bottom: 5px;
}

.dropdown-content a {
    color: #e0e0e0;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
}

.dropdown-content a:hover {
    background-color: #4a6b8f;
    color: #ffffff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.navbar-links .material-icons {
    font-size: 22px;
    color: #e0e0e0;
    vertical-align: middle;
}