/* In your auth-styles.css */
.user-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.user-dropdown .elementor-button {
    width: 100%;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.user-dropdown .elementor-button-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-width: 200px;
    z-index: 9999;
    margin-top: 8px;
    padding: 8px 0;
}

.user-dropdown.active .user-dropdown-menu {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.dropdown-item i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.dropdown-item:hover {
    background: #000000;
}

@media (max-width: 768px) {
    .user-dropdown-menu {
        position: fixed;
        top: auto;
        right: 16px;
        left: 16px;
        bottom: 16px;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .user-dropdown.active .user-dropdown-menu {
        transform: translateY(0);
    }

    .dropdown-item {
        padding: 16px;
        justify-content: center;
        border-bottom: 1px solid #eee;
    }
}