.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 100px;
    width: 100%;
    background-color: white;
    box-sizing: border-box;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.navbar-left img {
    width: 60px;
    height: auto;
}

.navbar-title {
    font-size: 1.8rem;
    line-height: 1.1;
}

.navbar ul {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    list-style: none;
}

.navbar a {
    text-decoration: none;
    color: black;
}

a.highlight {
    border: 2px solid hsl(0, 0%, 20%);
    background-color: hsl(0, 0%, 20%);
    color: white;
    padding: 10px 10px;
    border-radius: 2.5px;
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
        gap: 15px;
    }

    .navbar-left {
        width: 100%;
    }

    .navbar-title {
        font-size: 1.2rem;
    }

    .navbar-left img {
        width: 45px;
    }

    .navbar ul {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .navbar ul li {
        width: 100%;
    }

    .navbar ul li a {
        display: block;
        width: 100%;
        padding: 10px 0;
    }
}