.search-results {
    background-color: #ddd;
    border-radius: var(--border-radius);
    min-width: 16rem;
    max-width: 16rem;
    /* min-height: 10rem; */
    max-width: unset;
    margin-right: -.5rem;
}

.search-result {
    display: flex;
    padding: .5rem;
    border-radius: var(--border-radius);
    width: unset !important;
}

.search-result:hover {
    background-color: #ccc;
    cursor: pointer;
}

.search-result > .profile {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #ccc;
    background-size: cover;
    background-position: center;
    margin-right: .5rem;
}

.search-result > div {
    align-self: center;
}