ul.nav-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    height: 50px;
    padding-right: 50px;
    padding-left: 50px;
}

@media (max-width: 768px) {
    ul.nav-list {
        padding-right: 20px;
        /* Reduce padding for mobile screens */
        padding-left: 20px;
        /* Add left padding for better alignment */
    }
}

ul.nav-list li+li {
    float: right;
}

li {
    display: inline-flex;
    margin-right: 20px;
}

ul.nav-list li:nth-child(2) {
    margin-right: 0;
    /* Remove margin-right for the second list item */
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: whitesmoke;
    text-decoration: none;
    height: 50px;
    line-height: 50px;
    /* margin-left: 50px; */
}

a.header {
    text-decoration: none;
    font-size: 20px;
    color: white;
    line-height: 50px;

}

a.header:hover {
    text-decoration: underline;
}

a.header:active {
    text-decoration: underline;
}

a.header.current {
    text-decoration: underline;
}


.manrope-fonts {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}