.topbar {
    background-color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar a {
    font-size: 14px;
    color: #000000b9;
    text-decoration: none;
}


.topbar img {
    position: relative;
    float: left;
    width: 30px;
    margin-top: -10px;
    margin-bottom: -10px;
}

/* Stili per il menu a tendina */
.dropdown {
    position: absolute;
    right: 0;
}

.dropdown-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 37px;
    height: 12px;
    cursor: pointer;
}

.dropdown-icon div {
    width: 20px;
    height: 2px;
    background-color: #000000b9;
}


.dropdown-content {
    position: absolute;
    margin-top: 13px;
    background-color: white;
    min-width: 120px;
    z-index: 1;
    right: 0;
    box-shadow: 0 2px 5px rgba(254, 254, 254, 0.1);
    /* Allinea il menu a tendina a destra */
}

.dropdown-content a {
    padding: 12px 16px;
    display: block;
}

.dropdown-content a:hover {
    background-color: #eaeaea;
}