.pick-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.pick-item:hover {
    background: var(--background-modifier-hover);
}

.pick-item-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.pick-user-item-avatar {
    border-radius: 50%;
}

.pick-item-avatar.low {
    width: 16px;
    height: 16px;
}

.pick-item-avatar.middle {
    width: 24px;
    height: 24px;
}

.pick-item-avatar.high {
    width: 32px;
    height: 32px;
}

.pick-item-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.pick-item-name{
    color: var(--text-normal);
}

.pick-item-name.low {
    font-size: 14px;
    font-weight: 400;
}

.pick-item-name.middle {
    font-size: 16px;
    font-weight: 500;
}

.pick-item-name.high {
    font-size: 18px;
    font-weight: 600;
}