﻿.am-accwrap {
    position: relative;
    display: inline-block;
}

#amAccMenu.am-accmenu {
    position: absolute;
    top: 100%;
    margin-top: 8px; 
    right: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
    padding: 6px 0;
    z-index: 10000;
    display: none;
}

#amAccMenu[aria-hidden="false"] {
    display: block;
}



#amAccMenu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -8px;
    height: 8px;
}

.am-accitem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #111;
    text-decoration: none;
}

    .am-accitem:hover {
        background: #f7f7f8;
    }

    .am-accitem svg {
        width: 18px;
        height: 18px;
    }

    .am-accitem button {
        background: none;
        border: 0;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        text-align: left;
        cursor: pointer;
        color: #111;
    }

.am-accitem--danger button {
    color: #e21b23;
}

.am-accwrap.is-open #amAccMenu {
    display: block;
}
