.lh-user-menu {
    position: relative;
    display: inline-block;
    z-index: 9999;
    cursor: pointer;
    font-family: "Times New Roman", Times, serif;
}

/* LOGIN / USER TEXT */
.lh-login-trigger,
.lh-user-name {
    font-size: 20px;
    color: #ffffff;
    
    display: inline-block;
    max-width: 140px; /* adjust here */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    cursor: pointer;
}

/* DROPDOWN */
.lh-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #0a1f44;
    padding: 15px;
    border-radius: 8px;
    width: 300px;
    z-index: 9999;
}

/* GOOGLE LOGIN WRAP */
.lh-google-login {
    display: flex;
    align-items: center;
}

/* OPTIONAL: scale Nextend button */
.lh-google-login .nsl-container {
    transform: scale(0.9);
    transform-origin: left center;
}

/* LOGOUT */
.lh-logout-btn,
.lh-logout-btn:visited,
.lh-logout-btn:active {
    color: white !important;
    
    text-decoration: none;
    display: block;
}

.lh-logout-btn:hover {
    color: #ffffff !important;
}










.lh-logout-trigger{
    display:inline-block;
    font-size:13px;
    font-weight:500;
    color:#fff;
    text-decoration:none;

    padding:6px 12px;
    border-radius:10px;

    background:#111;
    border:1px solid rgba(255,255,255,.15);

    transition:all .2s ease;
}

.lh-logout-trigger:hover{
    transform:translateY(-2px);
    border-color:#D4AF37;
    box-shadow:0 6px 18px rgba(0,0,0,.25);
}