/* Picker Item Styles */
.member-item-selectable {
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 4px 0;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s ease;
    gap: 12px;
}

.member-item-selectable:hover {
    background: rgba(255, 255, 255, 0.08);
}

.member-avatar {
    width: 32px;
    height: 32px;
    background: #4da3ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.member-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.member-name {
    font-size: 14px;
    color: #eee;
}

.check-icon {
    font-size: 14px;
}

/* Search Input Styling */
#member-search {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    color: white;
    outline: none;
}

#member-search:focus {
    border-color: #4da3ff;
}