.user-thumb {
    width: 40px;
    height: 40px;
    border-radius: var(--ins-radius-s);
    object-fit: cover;
    background: var(--bg-tertiary);
    flex-shrink: 0;
    cursor: pointer;
}

.-user-menu {
    position: absolute;
    top: 45px;
    width: 200px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    max-height: 0;
    transition: all 0.3s ease;
}

.user-thumb:hover+.-user-menu,
.-user-menu:hover {
    opacity: 1;
    max-height: 400px;
}

.nav-auth {
    position: relative;
}

.-logout-btn {
    background: var(--danger);
    color: white;
}