.login-button-section {
    width: fit-content;
}
.user-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.user-profile-section .user-avatar {
    width: 30px; /* 40px to 30px */
    height: 30px; /* 40px to 30px */
    border-radius: 50%;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 120px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px 0;
}

.dropdown-content a {
    color: black;
    padding: 10px 16px;
    line-height: 1;
    text-decoration: none;
    display: block;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.dropdown-content a:hover {
    color: var(--tertiarycolor);
    background-color: #f1f1f1;
}

.user-dropdown:hover .dropdown-content {
    display: block;
}

.emts-login-widget .user-profile-section,
.emts-login-widget .user-profile-section .user-dropdown { line-height: 0; }

.login-button-section .elementor-button-wrapper { line-height: 0; }
.login-button-section .elementor-icon {
    color: white;
    font-size: 30px;
}