.simple-navbar {
    /* position: sticky; */
    /* Set the navbar to fixed position */
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 4px;
    padding-right: 80px;
    background-color: #f7f8f9;
    /* Colore di sfondo simile a Bootstrap */
}

.nav-menu {
    display: flex;
    list-style: none;
    margin-right: 4px;
    padding: 0;
    align-items: center;
    gap: 40px;
}

.nav-item {
    position: relative;
}

#lang {
    font-size: clamp(.7rem, .9vw, 1rem);
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 4px;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
}

.dropdown-menu a {
    /* color: black; */
    padding: 1px 10px;
    text-decoration: none;
    display: block;

}

.dropdown-menu a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-menu {
    display: block;
    font-size: clamp(.8rem, .9vw, 1rem);
}


.logo img {
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
    /* Leggero zoom al passaggio del mouse */
}

.logo img {
    height: 60px;
    width: auto;
    /* object-fit: contain; */
}

.lang:hover {
    /* background-color: gray; */
    /* color: white; */
    display: block;
    /* font-size: larger; */
}

.lang {
    padding-left: 20px;
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(.7rem, .8vw, .9rem);
    /* color: gray; */
    max-width: 100px;
}

#Valuta:hover {
    background-color: gray;
    color: white;
    display: block;
    font-size: larger;
}

#Valuta {
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(.7rem, 1.1vw, 1.1rem);
    color: gray;
}

#access:hover {
    background-color: gray;
    color: white;
    display: block;
    font-size: larger;
}

#access {
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(.7rem, 1.1vw, 1.1rem);
    color: gray;
}

#imgPerson:hover {
    transition: all 0.3s ease-in-out;
}


@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 44px;
    }
}

@media (max-width: 390px) {
    .logo img {
        height: 40px;
    }
}