.wmem-signin-wrapper {
    position: relative;
    display: inline-block;
}

.wmem-signin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.wmem-signin-btn.wmem-status-out {
    border: 1px solid transparent;
}

.wmem-signin-btn.wmem-status-in {
    gap: 8px;
    background: transparent;
    border: none;
    padding: 8px 16px;
}

.wmem-signin-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 99;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 8px;
    text-align: left;
    min-width: 200px;
}

.wmem-signin-dropdown.show {
    display: block;
}

.wmem-dropdown-item {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    transition: background 0.2s;
    color: #333;
}

.wmem-dropdown-item:hover {
    background-color: #f3f4f6;
    color: #0a66c2;
}

.wmem-dropdown-divider {
    border-top: 1px solid #eee;
    margin: 0;
}
