#user-dropdown-menu {
    width: 370px;
    background: #151515;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    top: calc(100% + 15px);
    right: -20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

#user-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

#user-dropdown-menu {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.glass-effect { 
    backdrop-filter: blur(16px) saturate(180%);     
    background-color: rgb(17 17 17 / 68%); 
    border: 1px solid rgba(255, 255, 255, 0.125); 
}

.user-menu__avatar svg {
    height: 64px;
    position: absolute;
    width: 64px;
    stroke: #646464;
    stroke-width: 4px;
    fill: none;
}

.user-menu__avatar {
    background: #2d2d2d;
}

.header__avatar {
    align-items: center;
    cursor: pointer;
    display: flex
;
    position: relative;
}

.header__avatar p {
    background: none no-repeat 50% 50%;
    background-size: cover;
    border: 2px solid #646464;
    border-radius: 50%;
    height: 30px;
    image-rendering: pixelated;
    position: relative;
    width: 30px;
    margin-right: 5px;
}

.header__avatar p svg {
    height: 16px;
    position: absolute;
    width: 16px;
    stroke: #646464;
    stroke-width: 7px;
    fill: none;
    left: calc(50% - 8px);
    top: calc(50% - 8px);
}