.navbar {
    padding: 0 20px;
    width: calc(100% - 40px);
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 2px 4px rgb(15 34 58 / 12%);
}

.notifications {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    position: relative;
    text-align: center;
}

.notifications-badge {
    position: absolute;
    left: 10px;
    bottom: 18px;
    padding: 1px 5px;
    border-radius: 20px;
    background-color: red;
    text-align: center;
    font-size: 12px;
    color: #fff;
}

.user-infos {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10px;
    cursor: pointer;
    position: relative;
}

img.avatar {
    width: 30px;
    height: 30px;
    border-radius: 100%;
}

.fullname {
    margin: 0 10px;
    font-size: 15px;
    font-weight: bold;
    color: #555B6D;
}

.user-infos-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgb(15 34 58 / 12%);
}

ul.dropdown-container {
    list-style: none;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.dropdown-item {
    display: flex;
    width: 100%;
}

.dropdown-item a {
    width: 100%;
    text-decoration: none;
    padding: 10px 30px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    color: #555B6D;
}

.dropdown-item a:hover {
    background-color: #f5f6f8;
}

.dropdown-item a form input {
    text-decoration: inherit;
    border: none;

}

.dropdown-label {
    margin: 0 15px;
    font-size: 14px;
}

.logout-btn {
    background-color: #fff;
    color: #555B6D;
    margin: 0;
    padding: 0;
}
.dropdown-item a:hover .logout-btn {
    background-color: #f5f6f8;
    cursor: pointer;
}
