.usermenu-row {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown a {
    color: black;
    text-decoration: none;
}

.photo {
    width: 30pt;
    border-radius: 50%;
    border-style: solid;
    border-width: 1px;
    color: #999999;
}

.header-background {
    background: var(--grey-light);
}

.dropdown-content {
    display: flex;
    opacity: 0;
    flex-direction: column;
    position: absolute;
    left: 0px;
    height: 0px;
    z-index: 1;
    transition: opacity 300ms ease-in 0s;
    overflow: hidden;
}

.user-dropdown-link {
    display: inline-block;
    padding: 0em;
    text-decoration: underline;
    color: black;
    font-size: var(--header-size)!important;
}

.dropdown:hover .dropdown-content {
    border-radius: 6px;
    border: 2px solid var(--main);
    padding: 0.3em 0.3em 0.3em 0.3em;
    opacity: 1;
    height: max-content;
}

.dropdown .dropdown-content a {
    padding: 0.2em;
    margin: 0.1em 0.2em;
    display: inline-block;
}