.account-icon-block {
    display: flex;
}

.account-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--wp--preset--color--contrast);
    transition: all 0.2s ease;
    position: relative;
}

.account-icon-btn:hover {
    color: var(--wp--preset--color--accent-1);
}

.account-icon-btn svg {
    width: 19px;
    height: 23px;
    display: block;
    filter: brightness(0) saturate(100%) invert(82%) sepia(9%) saturate(1963%) hue-rotate(347deg) brightness(108%) contrast(94%);
}

.account-icon-btn.logged-in svg {
    width: 32px;
    height: 32px;
}

.account-icon-btn svg path {
    stroke: var(--wp--preset--color--base);
    transition: stroke 0.2s ease;
}

.account-icon-btn:hover svg path {
    stroke: var(--wp--preset--color--accent-1);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

