.searchbox {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.profile {
    display: flex;
    box-sizing: border-box;
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
    text-align: left;
}

.profile-image {
    width: 70px;
    height: 70px;
    margin-right: 15px;
    position: relative;
    background-image: linear-gradient(#fff, #fff), conic-gradient(from 270deg, #e7fdff, #d2defe, #e8daf4, #d2defe, #e7fdff);
    border: 2px solid transparent;
    border-radius: 15px;
    background-origin: border-box;
    background-clip: content-box, border-box;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}