.profile-menu-container {
    display: flex;
    justify-content: flex-end;
}

/* Profile icon container */
.profile-container {
    position: relative;
}

/* Circular Avatar */
.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: cover;
    cursor: pointer;
    border: 2px solid white;
}

/* Dropdown menu */
.profile-dropdown-menu {
    display: none;
    position: absolute;
    top: 45px;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    z-index: 10;
    flex-direction: column;
    overflow: auto;
}

/* Menu items */
.profile-dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

/* Hover effect on menu items */
.profile-dropdown-menu a:hover {
    background-color: #f1f1f1;
}

/* Show the dropdown when avatar is clicked */
.profile-container.active .profile-dropdown-menu {
    display: flex;
}

.profile-spaceBetweenIconAndText {
    padding-right: 5px;
}

.profile-account-section {
    flex-shrink: 0;
}

.profile-account-section::before,
.profile-account-section::after {
    display: block;
    height: 6px;
    content: "";
}

.profile-account-section [data-ds--menu--heading-item]:first-of-type {
    margin-block-start: 14px;
}

.profile-account-section [data-ds--menu--heading-item] {
    margin-block: 20px 6px;
}

.profile-account-label {
    color: var(--ds-text-subtle, #5E6C84);
    font: var(--ds-font-heading-xxsmall, normal 600 12px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif);
    padding-block: var(--ds-space-0, 0px);
    padding-inline: var(--ds-space-200, 16px);
}

.profile-environment-label {
    color: var(--ds-text-subtle, #5E6C84);
    font: var(--ds-font-heading-xxsmall, normal 600 12px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif);
    margin-block: 10px 0px;
    padding-inline: var(--ds-space-200, 16px);
}

.profile-account-user {
    display: flex;
    box-sizing: border-box;
    gap: var(--ds-space-150, 12px);
    -webkit-box-align: center;
    align-items: center;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    width: 100%;
    -webkit-box-flex: 1;
    flex-grow: 1;
    padding: 0px 10px;
}

.profile-item-title {
    font: var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-user-box {
    display: flex;
}

.profile-space-avatar-user {
    margin-right: var(--ds-space-100, 8px);
}

.profile-environment-section {
    box-sizing: border-box;
    appearance: none;
    border: none;
    padding: var(--ds-space-0, 0px);
    margin-bottom: 10px;
    margin-top: 0px;
}

.profile-environment-section li {
    box-sizing: border-box;
    appearance: none;
    border: none;
    margin: var(--ds-space-0, 0px);
    padding: 5px 10px;
    ;
}

.profile-account-shortcut {
    box-sizing: border-box;
    appearance: none;
    border: none;
    padding: var(--ds-space-0, 0px);
    margin: var(--ds-space-0, 0px);
}

.profile-account-shortcut li {
    box-sizing: border-box;
    appearance: none;
    border: none;
    padding: var(--ds-space-0, 0px);
    margin: var(--ds-space-0, 0px);
}

::marker {
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: start !important;
    text-align-last: start !important;
}

.profile-environment-item-container {
    display: flex;
    box-sizing: border-box;
    gap: var(--ds-space-150, 12px);
    -webkit-box-align: center;
    align-items: center;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    width: 100%;
    -webkit-box-flex: 1;
    flex-grow: 1;
}

.profile-item-box {
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    -webkit-box-flex: 1;
    flex-grow: 1;
    outline: none;
    overflow: visible;
    text-align: left;
}

.profile-group-section {
    flex-shrink: 0;
    border-block-start: 1px solid var(--ds-menu-seperator-color, var(--ds-border, rgba(9, 30, 66, 0.08)));
}