.userHeader{
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #b1ec52;
    color: #5e9802;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    border-radius: 25px;
    cursor: pointer;
}

.userHeaderWrapper {
    position: relative;
    display: inline-block;
    display: flex;
    align-items: center;
}

.userHeaderString {
    margin-left: 10px;
}

.userMenu {
    position: absolute;
    top: 60px;
    right: 0;
    min-width: 300px;
    background: #fff;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
    border-radius: 12px;
    padding: 20px 24px 16px 24px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.userMenuName {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
}
.userMenuRole {
    font-size: 15px;
    color: #bdbdbd;
    margin-bottom: 8px;
}
.userMenuDivider {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 8px 0 8px 0;
}
.userMenuProfile {
    color: #b1ec52;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 2px;
}
.userMenuLogout {
    color: #222;
    font-size: 16px;
    cursor: pointer;
    font-weight: 400;
}
