/**
 * Login Widget CSS
 */
.elementor-login-widget {
    position: relative;
    display: inline-block;
}

.login-widget-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-widget-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.login-widget-icon {
    /*margin-right: 8px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding:2px;
}

.login-widget-icon svg {
    height:22px;
    fill: #000;
}

.login-widget-text {
    margin-right: 5px;
}

.login-widget-arrow {
    margin-left: 5px;
}

.login-widget-avatar {
    display: inline-flex;
    margin-right: 8px;
    align-items: center;
}

.login-widget-avatar img {
    display: block;
    border-radius: 50%;
}

.login-widget-toggle{
    display: flex; 
    align-items: center;
}

.login-widget-text, .login-widget-arrow {
    display:none;
}

@media screen and (max-width:767px) {
.login-widget-wrapper {
    border-radius: 50%;
}
}

/* Dropdown Menu */
.login-dropdown-menu {
    position: absolute;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

.login-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
}

/* Dropdown Menu Positioning */
.login-dropdown-menu.dropdown-position-bottom_right {
    top: 100%;
    right: 0;
    margin-top: 10px;
}

.login-dropdown-menu.dropdown-position-bottom_left {
    top: 100%;
    left: 0;
    margin-top: 10px;
}

.login-dropdown-menu.dropdown-position-top_right {
    bottom: 100%;
    right: 0;
    margin-bottom: 10px;
}

.login-dropdown-menu.dropdown-position-top_left {
    bottom: 100%;
    left: 0;
    margin-bottom: 10px;
}

/* Menu Styling */
.login-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.login-dropdown-list li {
    margin: 0;
    padding: 0;
}

.login-dropdown-list a {
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.login-dropdown-list a:hover {
    background-color: #f8f8f8;
}