.profile-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    width: 78px;
    height: 50px;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.profile-picture {
    width: 50px;
    height: 50px;
    background: #EEA91E;
    border-radius: 500px; /* Makes it a circle */
    flex: none;
    order: 0;
    flex-grow: 0;
    position: relative; /* Required for absolute positioning of the inner text */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
}

.profile-picture span {
    position: absolute;
    left: 34%;
    right: 32%;
    top: 20%;
    bottom: 22%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-arrow-icon {
    width: 28px;
    height: 28px;
    flex: none;
    order: 1;
    flex-grow: 0;
    position: relative; /* Required for absolute positioning of the inner vector */
}

.profile-arrow-icon svg {
    position: absolute;
    width: 8.75px;
    height: 5.65px;
    left: 9.52px;
    top: 11.2px;
    fill: #272727; /* Sets the color of the SVG */
}
